Compare commits

..

2 Commits

Author SHA1 Message Date
Nonimart
c30e4c1f42 ENQUEUE statistic-data styles
All checks were successful
continuous-integration/drone/push Build is passing
2025-06-27 18:21:15 +02:00
Nonimart
52b98baec5 FEATURE introducing the component styling 2025-06-27 18:21:03 +02:00
2 changed files with 22 additions and 0 deletions

View File

@ -49,3 +49,4 @@
/* ########### BLOCKS ############ */
@import './blocks/explore-tags.css';
@import './blocks/wp-block-pullquote.css';
@import './blocks/statistics-datas.css';

View File

@ -0,0 +1,21 @@
.statistics-datas {
@apply flex justify-center flex-wrap gap-32;
&__item {
@apply flex flex-col gap-4 items-center;
&-number {
@apply text-6xl fjalla pt-3 font-light;
}
&-label {
@apply text-lg font-normal nunito;
}
&-icon {
img {
@apply w-full h-full object-contain;
@apply w-16 h-16;
}
}
}
}