From 696b845a878046404384ffa388147f22ed41b058 Mon Sep 17 00:00:00 2001 From: Daniel Stock Date: Thu, 23 Oct 2025 10:24:22 +0200 Subject: [PATCH] add classes visible-mac and visible-pc to enable platform agnostic styling --- resources/css/app.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/resources/css/app.css b/resources/css/app.css index 89d9e89..25a311c 100644 --- a/resources/css/app.css +++ b/resources/css/app.css @@ -189,4 +189,18 @@ @layer base { body { @apply bg-background text-foreground; } +} + +@layer components { + .is-mac .visible-pc { + display: none !important; + } + + .visible-mac { + display: none !important; + } + + .is-mac .visible-mac { + display: inherit !important; + } } \ No newline at end of file