Skip to content

Commit

Permalink
fix(ui): apply border class to both themes instead of only dark (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
MilosPaunovic authored Sep 12, 2024
1 parent f086912 commit 495e4f8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/scss/bootstrap-dark.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ $custom-colors: (
$theme-colors: map-merge($theme-colors, $custom-colors);

@each $color, $value in $theme-colors {
.bg-light-#{$color}-border {
background-color: rgba($value, 0.05);
border: 1px solid $value;
}

html.dark {
.bg-light-#{$color}-border {
background-color: rgba($value, 0.05);
border: 1px solid $value;
}

.border-execution-#{$color} {
border-left: 0.8125rem;
border-color: $value;
Expand Down

0 comments on commit 495e4f8

Please sign in to comment.