summaryrefslogtreecommitdiff
path: root/src/modules/launcher/actions.tsx
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-04-01 16:24:06 +1100
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-04-01 16:24:06 +1100
commit3d4577044ee400fc26b0d36ee90d562cf37e969c (patch)
treecb6bcf13f1cad2933adf75244a57a865b4bde7aa /src/modules/launcher/actions.tsx
parentconfig: lazy update arrays (diff)
downloadcaelestia-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.tsx4
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);