From 7592b92d01625939251e5f259a830de946a24bb7 Mon Sep 17 00:00:00 2001 From: Robert La Ferla Date: Thu, 11 Jan 2024 12:13:53 -0500 Subject: [PATCH] fix: button text is no longer selectable (#60) --- src/style/app.css | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/style/app.css b/src/style/app.css index 54ff83c6..37837f8c 100644 --- a/src/style/app.css +++ b/src/style/app.css @@ -30,11 +30,18 @@ .action-btn-r { @apply grow ml-3; } + } -body { +@layer base { + body { color: white; min-height: 100vh; margin: 2em; background: linear-gradient(to bottom right, #293B59, #007DA1); -} + } + + button { + @apply select-none; + } +} \ No newline at end of file