Skip to content

Commit

Permalink
Fix margins of the buttons in the server input setting of the caspar …
Browse files Browse the repository at this point in the history
…plugin

Signed-off-by: Axel Boberg <[email protected]>
  • Loading branch information
axelboberg committed Jan 13, 2024
1 parent 6cb4e48 commit a24d87b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/caspar/app/components/ServerInput/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ export const ServerInput = ({ data = {}, onChange = () => {}, onDelete = () => {
</select>
</div>
</div>
<div>
<button className='Button Button--ghost' onClick={() => handleDelete()}>Delete</button><br/>
<div className='ServerInput-actions'>
<button className='Button Button--ghost' onClick={() => handleDelete()}>Delete</button><br />
<button className='Button Button--ghost' onClick={() => handleConnect()}>Connect</button>
</div>
</div>
Expand Down
4 changes: 4 additions & 0 deletions plugins/caspar/app/components/ServerInput/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,7 @@
margin-top: 10px;
border-top: 1px solid var(--base-color--shade1);
}

.ServerInput-actions .Button {
margin-bottom: 7px;
}

0 comments on commit a24d87b

Please sign in to comment.