Skip to content

Commit

Permalink
Add css vars to ensure the right shades of color are being taken
Browse files Browse the repository at this point in the history
  • Loading branch information
rhetprieto committed May 7, 2022
1 parent c0879b8 commit 249d350
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions public/bundle.css

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions views/theme/assets/scss/components/card.scss
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@

.v-card-selected {
outline: none;
border: 3px solid palette(secondary7);
border: 3px solid var(--mdc-theme-secondary7, palette(secondary7));
}

.v-card-border-left {
border-left: 5px solid palette(secondary9);
border-left: 5px solid var(--mdc-theme-secondary9, palette(secondary9));
}

.v-card-border-top {
border-top: 5px solid palette(secondary9);
border-top: 5px solid var(--mdc-theme-secondary9, palette(secondary9));
}

0 comments on commit 249d350

Please sign in to comment.