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

View File

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

View File

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

View File

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

View File

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