add classes visible-mac and visible-pc to enable platform agnostic styling

This commit is contained in:
2025-10-23 10:24:22 +02:00
parent 95a6b0658f
commit 696b845a87
+14
View File
@@ -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;
}
}