Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
philippfromme committed Aug 15, 2024
1 parent 8fad0ab commit 12c5b49
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
3 changes: 3 additions & 0 deletions client/src/app/status-bar/StatusBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ export function StatusBar(props) {
</div>
<div className="status-bar__app">
<Slot name="status-bar__app" />
<button class="btn update-btn" title="Update">
Update
</button>
</div>
</footer>
);
Expand Down
13 changes: 13 additions & 0 deletions client/src/app/status-bar/StatusBar.less
Original file line number Diff line number Diff line change
Expand Up @@ -95,4 +95,17 @@
.btn + .btn {
margin-left: 1px;
}

.update-btn {
background-color: var(--color-white);
margin: 3px;
border-radius: 2px;
border: solid 2px var(--color-blue-205-100-40);
color: var(--color-blue-205-100-40);
padding: 0 20px;

&:hover {
background-color: var(--color-blue-205-100-95);
}
}
}

0 comments on commit 12c5b49

Please sign in to comment.