diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-14 12:45:40 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-14 12:45:40 +1100 |
| commit | a8f82410065774ae7edb2f65ed379a0fadcce38d (patch) | |
| tree | adcc75cbd6665a07298b895221cc0599bdbaed06 /scss/launcher.scss | |
| parent | lib: spacing use not selector (diff) | |
| download | caelestia-shell-a8f82410065774ae7edb2f65ed379a0fadcce38d.tar.gz caelestia-shell-a8f82410065774ae7edb2f65ed379a0fadcce38d.tar.bz2 caelestia-shell-a8f82410065774ae7edb2f65ed379a0fadcce38d.zip | |
scss: fix deprecation warnings
spacing mixin uses the parent selector so it has to go after all other styles
Diffstat (limited to 'scss/launcher.scss')
| -rw-r--r-- | scss/launcher.scss | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scss/launcher.scss b/scss/launcher.scss index eddbc88..6fe9035 100644 --- a/scss/launcher.scss +++ b/scss/launcher.scss @@ -14,11 +14,11 @@ padding: lib.s(10) lib.s(14); .search-bar { - @include lib.spacing; - margin-bottom: lib.s(5); font-size: lib.s(16); + @include lib.spacing; + .icon { font-size: lib.s(18); color: scheme.$sapphire; @@ -54,10 +54,10 @@ .results { .empty { - @include lib.spacing; - color: scheme.$subtext0; + @include lib.spacing; + .icon { font-size: lib.s(32); } |