0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-11-15 14:22:53 +01:00

FIX: Use SCSS variables for color manipulation functions

Dieser Commit ist enthalten in:
Keegan George 2021-06-29 14:44:37 -07:00
Ursprung 7b7b8adb13
Commit 4b14ec526d
2 geänderte Dateien mit 7 neuen und 4 gelöschten Zeilen

Datei anzeigen

@ -723,11 +723,11 @@
&:hover, &:hover,
&:focus { &:focus {
background: darken(var(--pavilion-primary), 5%); background: darken($pavilionPrimary, 5%);
&[href], &[href],
svg.d-icon { svg.d-icon {
color: darken(var(--pavilion-secondary), 10%); color: darken($pavilionSecondary, 10%);
} }
} }
} }

Datei anzeigen

@ -1,4 +1,7 @@
$pavilionPrimary: #3c1c8c;
$pavilionSecondary: #ffffff;
:root { :root {
--pavilion-primary: rgb(60, 28, 140); --pavilion-primary: #3c1c8c;
--pavilion-secondary: rgb(255, 255, 255); --pavilion-secondary: #ffffff;
} }