Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Lex-Ai committed Jul 10, 2023
1 parent ac7a95f commit fc3c27a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions app/assets/stylesheets/_themes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ $themes: (
buttonBoxShadowHover: $color-blue-black,
modalBackgroundColor: $color-white,
modalTextColorPrimary: $color-text-dark,
modalReminder: #d0edff,
),
dark: (
colorAccent: $color-teal,
Expand Down Expand Up @@ -121,6 +122,7 @@ $themes: (
inputPriceWarning: rgba(255, 153, 0, 0.83),
modalBackgroundColor: $color-white,
modalTextColorPrimary: $color-text-dark,
modalReminder: $color-blue-dark,
),
);

Expand Down
4 changes: 3 additions & 1 deletion app/components/elements/app/AppReminder.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
.AppReminder {
background-color: #d0edff !important;
@include themify($themes) {
background-color: themed('modalReminder') !important;
}
color: #333;
border-radius: 5px;
position: fixed;
Expand Down

0 comments on commit fc3c27a

Please sign in to comment.