mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-09 19:42:48 +00:00
Use modern compiler for css processing in vite (to remove SASS 2.0.0 warnings on deprecated JS API usage); (#180)
Resolve some of SASS deprecation warnings; Add note to readme about icons generation
This commit is contained in:
committed by
GitHub
parent
1c8f53caf6
commit
63d0ad7ae8
@@ -19,6 +19,8 @@ button {
|
||||
|
||||
font-family: inherit;
|
||||
font-weight: 600;
|
||||
border-radius: 32px;
|
||||
transition: all 250ms ease;
|
||||
|
||||
@media not (forced-colors: active) {
|
||||
color: currentcolor;
|
||||
@@ -36,10 +38,6 @@ button {
|
||||
color: ButtonText;
|
||||
}
|
||||
|
||||
border-radius: 32px;
|
||||
|
||||
transition: all 250ms ease;
|
||||
|
||||
&.icon {
|
||||
display: inline-flex;
|
||||
|
||||
@@ -48,7 +46,6 @@ button {
|
||||
padding-inline: 0;
|
||||
|
||||
font-size: 24px;
|
||||
|
||||
border-radius: 50%;
|
||||
|
||||
@media (forced-colors: active) {
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
@import "./reset";
|
||||
@use "reset";
|
||||
|
||||
@import "./form/button";
|
||||
@import "./form/toggle";
|
||||
@import "./form/checkbox";
|
||||
@use "form/button";
|
||||
@use "form/toggle";
|
||||
@use "form/checkbox";
|
||||
|
||||
@import "./kbd";
|
||||
@import "./print";
|
||||
@use "kbd";
|
||||
@use "print";
|
||||
|
||||
@import "./elements/h1";
|
||||
@use "elements/h1";
|
||||
|
||||
body {
|
||||
overflow: hidden;
|
||||
|
||||
Reference in New Issue
Block a user