Skip to content

Commit

Permalink
fix(ui): fix button borders
Browse files Browse the repository at this point in the history
  • Loading branch information
prymitive committed Jul 26, 2022
1 parent e2fe173 commit ebffa28
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
13 changes: 13 additions & 0 deletions ui/src/Styles/DarkTheme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@ $table-accent-bg: transparent;

$card-cap-bg: inherit;

$kbd-color: $white;
$kbd-bg: $dark;

@import "./RebootlessBootstrap";
@import "bootswatch/dist/darkly/bootswatch";

Expand Down Expand Up @@ -112,3 +115,13 @@ $color-default: #708090;
a {
color: $link-color;
}

button.btn {
--bs-btn-active-border-color: transparent;
--bs-btn-hover-border-color: transparent;
}

kbd {
font-family: $font-family-monospace;
color: $white;
}
13 changes: 13 additions & 0 deletions ui/src/Styles/LightTheme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ $table-accent-bg: transparent;

$card-cap-bg: inherit;

$kbd-color: $white;
$kbd-bg: $dark;

@import "./RebootlessBootstrap";
@import "bootswatch/dist/flatly/bootswatch";

Expand Down Expand Up @@ -91,3 +94,13 @@ $color-default: #708090;
a {
color: $link-color;
}

button.btn {
--bs-btn-active-border-color: transparent;
--bs-btn-hover-border-color: transparent;
}

kbd {
font-family: $font-family-monospace;
color: $white;
}

0 comments on commit ebffa28

Please sign in to comment.