Skip to content

Commit

Permalink
Adjust bg-info color
Browse files Browse the repository at this point in the history
  • Loading branch information
tkleinke committed Feb 11, 2025
1 parent 8a78be0 commit 6cacbab
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
8 changes: 6 additions & 2 deletions desktop/src/app/components/buttons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -195,11 +195,15 @@ category-switcher-button {

.btn-info {
color: white !important;
background-color: #17a2b8;
border-color: #17a2b8;
background-color: $info-button-color;
border-color: $info-button-color;

&:hover, &:active {
background-color: #138496 !important;
border-color: #138496 !important;
}
}

.bg-info {
background-color: $info-button-color !important;
}
1 change: 1 addition & 0 deletions desktop/src/app/components/variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ $primary: #37588e !default;
$primary-button-color: #5572a1;
$green-button-color: #198754;
$red-button-color: #e00000;
$info-button-color: #17a2b8;

$item-height: 58px;
$item-padding-top: 8px;
Expand Down

0 comments on commit 6cacbab

Please sign in to comment.