FEATURE refine statistques collections
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Antoine M 2026-05-06 11:33:06 +02:00
parent fb3ff32862
commit 2734870018

View File

@ -1,6 +1,14 @@
.statistiques-collections { .statistiques-collections {
.statistiques-collections__toolbar {
@apply hidden lg:block;
.tablist {
@apply gap-7;
}
}
.amount-container { .amount-container {
@apply border border-primary h-40 w-full relative flex items-center justify-start gap-12; @apply border border-primary h-24 lg:h-40 w-full relative flex items-center justify-start gap-12;
.percentage-label { .percentage-label {
@apply !mb-0 text-xl font-semibold; @apply !mb-0 text-xl font-semibold;
@ -10,10 +18,16 @@
.amount-container, .amount-container,
.amount-container-all { .amount-container-all {
min-height: 10rem; min-height: 10rem;
@media (max-width: 768px) {
min-height: unset;
}
} }
.amount-container-all { .amount-container-all {
@apply bg-primary text-white p-8; @apply bg-primary text-white p-8;
display: flex;
flex-direction: column;
justify-content: center;
p { p {
@apply text-white !mb-0; @apply text-white !mb-0;
} }
@ -46,8 +60,11 @@
@apply !mb-0; @apply !mb-0;
} }
&[data-active='false'] { &[data-active='false'] {
display: block;
@screen lg {
display: none; display: none;
} }
}
&[data-active='true'] { &[data-active='true'] {
display: block; display: block;
} }