mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-02-09 03:37:45 +03:00
syntax fix
This commit is contained in:
parent
8192e5d8f1
commit
855a646d23
@ -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"] {
|
||||
|
@ -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);
|
||||
}
|
||||
|
@ -49,7 +49,7 @@
|
||||
background-color: $color-muted;
|
||||
}
|
||||
|
||||
&__disabled {
|
||||
&--disabled {
|
||||
opacity: $opacity-disabled;
|
||||
}
|
||||
}
|
||||
|
@ -45,7 +45,7 @@
|
||||
text-decoration: underline;
|
||||
cursor: pointer;
|
||||
|
||||
&:disabled {
|
||||
&--disabled {
|
||||
cursor: default;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
@ -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};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user