From f9993c60f565d7270b3a269e934b42b945c24b99 Mon Sep 17 00:00:00 2001 From: Philipp Dormann Date: Fri, 25 Apr 2025 15:18:21 +0200 Subject: [PATCH] feat(CardAssign): styled buttons --- src/style.css | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/style.css b/src/style.css index 6c76578f..39f7e203 100644 --- a/src/style.css +++ b/src/style.css @@ -7,3 +7,21 @@ * { font-family: Athiti; } +.html5-qrcode-element { + @apply block; + @apply w-full; + @apply p-4; +} +#qr-scanner__dashboard_section_csr { + /* padding-right: 20px; */ + padding: 1rem; +} +#html5-qrcode-select-camera { + @apply px-2 py-2 inline-flex text-lg leading-5 font-semibold rounded-md border border-current bg-neutral-100 text-neutral-800 mb-2; +} +#html5-qrcode-button-camera-start { + @apply px-2 inline-flex text-lg leading-5 font-semibold rounded-md border border-current bg-green-100 text-green-800 mb-2 cursor-pointer; +} +#html5-qrcode-button-camera-stop { + @apply px-2 inline-flex text-lg leading-5 font-semibold rounded-md border border-current bg-red-100 text-red-800 mb-2 cursor-pointer; +}