diff options
| author | bobzel <zzzman@gmail.com> | 2023-12-11 17:04:49 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-12-11 17:04:49 -0500 |
| commit | 07c30aed69dfa810ddb0b861ae2dc8e8f3a27356 (patch) | |
| tree | 678a0855b169eb88fdc574fd49481ee6e57b12de /src/client/views/AntimodeMenu.scss | |
| parent | 936aa21fb576472e321a9af976d5da7b75292511 (diff) | |
fixed includes of scss globals into typescript files.
Diffstat (limited to 'src/client/views/AntimodeMenu.scss')
| -rw-r--r-- | src/client/views/AntimodeMenu.scss | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/client/views/AntimodeMenu.scss b/src/client/views/AntimodeMenu.scss index b205a0f1e..4613cec76 100644 --- a/src/client/views/AntimodeMenu.scss +++ b/src/client/views/AntimodeMenu.scss @@ -1,5 +1,4 @@ -@import "./global/globalCssVariables"; - +@import './global/globalCssVariables.module'; .antimodeMenu-cont { position: absolute; @@ -16,7 +15,7 @@ gap: 3px; &.with-rows { - flex-direction: column + flex-direction: column; } .antimodeMenu-row { @@ -26,8 +25,8 @@ .antimodeMenu-dragger { height: 100%; - transition: width .2s; - background-image: url("https://logodix.com/logo/1020374.png"); + transition: width 0.2s; + background-image: url('https://logodix.com/logo/1020374.png'); background-size: 90% 100%; background-repeat: no-repeat; background-position: left center; @@ -63,4 +62,4 @@ background-color: #121212; } } -}
\ No newline at end of file +} |
