syntax fix

This commit is contained in:
Nate 2025-01-17 22:42:14 -03:00
parent 8192e5d8f1
commit 855a646d23
5 changed files with 10 additions and 6 deletions

View file

@ -33,7 +33,7 @@ body {
overflow: hidden; overflow: hidden;
user-select: none; user-select: none;
font-family: "Noto Sans, sans-serif"; font-family: "Noto Sans, sans-serif";
font-size: 14px; // Assuming vars.size.body is 14px font-size: $body-font-size;
color: $body-color; color: $body-color;
margin: 0; margin: 0;
} }
@ -79,7 +79,7 @@ input::-webkit-inner-spin-button {
} }
label { label {
font-size: 14px; // Assuming vars.size.body is 14px font-size: $body-font-size;
} }
input[type="number"] { input[type="number"] {

View file

@ -35,12 +35,12 @@
z-index: $toast-z-index; z-index: $toast-z-index;
max-width: 500px; max-width: 500px;
&__closing { &--closing {
animation-name: slideOut; animation-name: slideOut;
transform: translateY(96px); transform: translateY(96px);
} }
&__opening { &--opening {
animation-name: slideIn; animation-name: slideIn;
transform: translateY(0); transform: translateY(0);
} }

View file

@ -49,7 +49,7 @@
background-color: $color-muted; background-color: $color-muted;
} }
&__disabled { &--disabled {
opacity: $opacity-disabled; opacity: $opacity-disabled;
} }
} }

View file

@ -45,7 +45,7 @@
text-decoration: underline; text-decoration: underline;
cursor: pointer; cursor: pointer;
&:disabled { &--disabled {
cursor: default; cursor: default;
text-decoration: none; text-decoration: none;
} }

View file

@ -38,6 +38,10 @@ $small-font-size: 12px;
$app-container: app-container; $app-container: app-container;
:root { :root {
--warning-color: #{$warning-color};
--dark-background-color: #{$dark-background-color};
--background-color: #{$background-color}; --background-color: #{$background-color};
--spacing-unit: #{$spacing-unit}; --spacing-unit: #{$spacing-unit};
--body-color: #{$body-color};
--border-color: #{$border-color};
} }