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__toolbar {
@apply hidden lg:block;
.tablist {
@apply gap-7;
}
}
.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 {
@apply !mb-0 text-xl font-semibold;
@ -10,10 +18,16 @@
.amount-container,
.amount-container-all {
min-height: 10rem;
@media (max-width: 768px) {
min-height: unset;
}
}
.amount-container-all {
@apply bg-primary text-white p-8;
display: flex;
flex-direction: column;
justify-content: center;
p {
@apply text-white !mb-0;
}
@ -46,8 +60,11 @@
@apply !mb-0;
}
&[data-active='false'] {
display: block;
@screen lg {
display: none;
}
}
&[data-active='true'] {
display: block;
}