commit 8c56aa3c460595a5706d5c0d4bf020d74d5cdd67 Merge: f642849d 1505080a Author: Philipp Dormann <philipp@philippdormann.de> Date: Mon Apr 28 10:57:14 2025 +0200 Merge branch 'dev' into feature/anonyme-spende commit f642849dbbd6e68198937fe2d9e588e0ddeb9fdb Author: Philipp Dormann <philipp@philippdormann.de> Date: Mon Apr 28 10:56:45 2025 +0200 wip commit 7ac92ae6ca310c9e4d5ed3fb38f8b5eb93949809 Author: Philipp Dormann <philipp@philippdormann.de> Date: Mon Apr 28 10:45:47 2025 +0200 wip commit 95af9f9914883e3d8a272f89b7c11c4a6802a416 Author: Philipp Dormann <philipp@philippdormann.de> Date: Mon Apr 28 10:44:02 2025 +0200 i18n commit 1004aee16c61411489f0231366ee94fdc16f21b2 Author: Philipp Dormann <philipp@philippdormann.de> Date: Mon Apr 28 10:40:23 2025 +0200 implement DonationDonor commit 0baf2fc460178cf8c6fa193547417e8d25f227a1 Author: Philipp Dormann <philipp@philippdormann.de> Date: Mon Apr 28 10:38:27 2025 +0200 wip commit 09b59175eeffe6026a4b48ee3d2f94a83f9dbf09 Author: Philipp Dormann <philipp@philippdormann.de> Date: Mon Apr 28 10:35:45 2025 +0200 wip commit a21f61f3f390d506a9046e17f9f49ba70cfc04b6 Author: Philipp Dormann <philipp@philippdormann.de> Date: Mon Apr 28 10:24:07 2025 +0200 wip
34 lines
1.3 KiB
CSS
34 lines
1.3 KiB
CSS
@import "tailwindcss";
|
|
|
|
.activenav {
|
|
@apply bg-gray-300;
|
|
@apply text-black;
|
|
}
|
|
* {
|
|
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;
|
|
}
|
|
.donation_inactive_tab {
|
|
@apply min-w-0 flex-1 bg-white first:border-s-0 border-s border-b-2 border-neutral-200 py-4 px-4 text-neutral-800 hover:text-neutral-700 text-sm font-medium text-center overflow-hidden hover:bg-neutral-200 cursor-pointer focus:z-10 focus:outline-hidden focus:bg-neutral-200 disabled:opacity-50 disabled:pointer-events-none;
|
|
}
|
|
.donation_active_tab {
|
|
@apply min-w-0 flex-1 bg-blue-400 text-white first:border-s-0 border-s border-b-2 border-neutral-200 py-4 px-4 text-sm font-medium text-center overflow-hidden cursor-pointer focus:outline-hidden;
|
|
}
|