Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
mgineer85 committed Jan 26, 2025
1 parent 9ebb670 commit b630418
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions src/css/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -47,23 +47,27 @@ h6 {
.q-btn.glass-effect {
backdrop-filter: blur(10px);
&.bg-primary {
background: rgba($primary, 0.4) !important;
background: color-mix(in srgb, var(--q-primary) 40%, transparent) !important;
}

&.bg-secondary {
background: rgba($secondary, 0.4) !important;
background: color-mix(in srgb, var(--q-secondary) 40%, transparent) !important;
}

&.bg-accent {
background: color-mix(in srgb, var(--q-accent) 40%, transparent) !important;
}

&.bg-positive {
background: rgba($positive, 0.4) !important;
background: color-mix(in srgb, var(--q-positive) 40%, transparent) !important;
}

&.bg-negative {
background: rgba($negative, 0.4) !important;
background: color-mix(in srgb, var(--q-negative) 40%, transparent) !important;
}

&.bg-grey {
background: rgba($grey, 0.4) !important;
background: color-mix(in srgb, var(--q-grey) 50%, transparent) !important;
}
}

Expand Down

0 comments on commit b630418

Please sign in to comment.