From c36e4ba6e08253e6e8bd48431c003ddeb6d54259 Mon Sep 17 00:00:00 2001 From: Zephrynis Date: Mon, 27 Oct 2025 21:58:21 +0000 Subject: [PATCH] Fix: add border-radius styles for first and last workspace buttons --- home/waybar-style.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/home/waybar-style.css b/home/waybar-style.css index ec70674..1d8c21e 100644 --- a/home/waybar-style.css +++ b/home/waybar-style.css @@ -28,6 +28,14 @@ window#waybar { transition: all 0.3s ease; } +#workspaces button:nth-child(1) { + border-radius: 15px 0 0 15px; +} + +#workspaces button:nth-last-child(1) { + border-radius: 0 15px 15px 0; +} + #workspaces button.active { background: rgba(137, 180, 250, 0.3); color: #89b4fa;