feat: migrate to native CSS variables
This commit is contained in:
@@ -1,8 +1,10 @@
|
||||
/* COLOR VARIABLES */
|
||||
$background: mix($accent, #1D1E28, 2%);
|
||||
$color: white;
|
||||
$border-color: rgba(255, 255, 255, .1);
|
||||
:root {
|
||||
/* COLOR VARIABLES */
|
||||
--background: color-mix(in srgb, var(--accent) 2%, #1D1E28 98%);
|
||||
--color: white;
|
||||
--border-color: rgba(255, 255, 255, .1);
|
||||
|
||||
/* MEDIA QUERIES */
|
||||
$phone: "max-width: 684px";
|
||||
$tablet: "max-width: 900px";
|
||||
/* MEDIA QUERIES */
|
||||
--phone: "max-width: 684px";
|
||||
--tablet: "max-width: 900px";
|
||||
}
|
||||
Reference in New Issue
Block a user