diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-04-01 16:24:06 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-04-01 16:24:06 +1100 |
| commit | 3d4577044ee400fc26b0d36ee90d562cf37e969c (patch) | |
| tree | cb6bcf13f1cad2933adf75244a57a865b4bde7aa /src/modules/launcher/actions.tsx | |
| parent | config: lazy update arrays (diff) | |
| download | caelestia-shell-3d4577044ee400fc26b0d36ee90d562cf37e969c.tar.gz caelestia-shell-3d4577044ee400fc26b0d36ee90d562cf37e969c.tar.bz2 caelestia-shell-3d4577044ee400fc26b0d36ee90d562cf37e969c.zip | |
launcher: add round style
Diffstat (limited to 'src/modules/launcher/actions.tsx')
| -rw-r--r-- | src/modules/launcher/actions.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/launcher/actions.tsx b/src/modules/launcher/actions.tsx index 11b07d0..e99c720 100644 --- a/src/modules/launcher/actions.tsx +++ b/src/modules/launcher/actions.tsx @@ -304,7 +304,7 @@ const Scheme = ({ scheme, name, colours }: { scheme?: string; name: string; colo const Wallpaper = ({ path, thumbnail }: IWallpaper) => ( <Gtk.FlowBoxChild visible canFocus={false}> <button - className="result" + className="result wallpaper-container" cursor="pointer" onClicked={() => { execAsync(`caelestia wallpaper -f ${path}`).catch(console.error); @@ -326,7 +326,7 @@ const Wallpaper = ({ path, thumbnail }: IWallpaper) => ( const Category = ({ path, wallpapers }: ICategory) => ( <Gtk.FlowBoxChild visible canFocus={false}> <button - className="result" + className="result wallpaper-container" cursor="pointer" onClicked={() => { execAsync(`caelestia wallpaper -d ${path}`).catch(console.error); |