diff options
author | Freya Murphy <freya@freyacat.org> | 2025-06-19 22:53:20 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-06-19 22:53:34 -0400 |
commit | 424e62dc79793187c46a222acf2a3fd88b9a7bd4 (patch) | |
tree | 092209fe447ce9a53107811828242babf95a241d /pkgs/astal/src/style/widget/launcher.scss | |
parent | unofficial-homestuck-collection: 2.6.6 -> 2.6.7 (diff) | |
download | dotfiles-nix-424e62dc79793187c46a222acf2a3fd88b9a7bd4.tar.gz dotfiles-nix-424e62dc79793187c46a222acf2a3fd88b9a7bd4.tar.bz2 dotfiles-nix-424e62dc79793187c46a222acf2a3fd88b9a7bd4.zip |
new astal app launcher, refactor astal build fn
Diffstat (limited to 'pkgs/astal/src/style/widget/launcher.scss')
-rw-r--r-- | pkgs/astal/src/style/widget/launcher.scss | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/pkgs/astal/src/style/widget/launcher.scss b/pkgs/astal/src/style/widget/launcher.scss new file mode 100644 index 0000000..b39d292 --- /dev/null +++ b/pkgs/astal/src/style/widget/launcher.scss @@ -0,0 +1,41 @@ + +.launcher { + > box { + padding: 5em; + background: gtkalpha($bg, 0.7); + border-radius: $outer-radius; + } + + .search { + margin-bottom: 5em; + color: $surface-fg; + background: $surface-bg; + padding: $outer-gap; + border-radius: $outer-radius; + min-width: 20em; + } + + .app { + background: transparent; + padding: $outer-gap; + margin: $outer-gap; + border-radius: $outer-radius; + min-width: 15em; + min-height: 15em; + + &:hover { + background: gtkalpha($hover-bg, .5); + } + + icon { + font-size: 9em; + } + + .name { + margin-top: $outer-gap; + font-size: 1.25em; + color: gtkalpha($fg, 0.9); + } + } + +} |