introducing block

This commit is contained in:
Antoine M 2024-01-10 16:47:06 +01:00
parent 08074658f9
commit 1ee43c6571

View File

@ -0,0 +1,51 @@
.homegarde-blocks-dates-seminaire {
.table_head {
@apply grid font-bold
bg-neutral-100 rounded-2xl py-3 px-8 pr-12;
grid-template-columns: 8fr 2fr;
:nth-child(2) {
@apply pl-8 text-right;
}
}
&__dates-grid {
}
.date-seminaire-row {
@apply grid
py-8
px-6
pr-12
items-center border-b border-neutral-300;
grid-template-columns: 8fr 2fr;
&:before {
content: none;
}
&:last-child {
@apply border-none;
}
&__is-complet {
@apply col-span-2;
p {
@apply bg-secondary text-white w-fit px-2 py-1 rounded-md
uppercase
my-0
tracking-wide
text-xs
font-medium;
}
}
&__date,
&__plage-horaire {
@apply my-0;
}
&__date {
@apply my-0 font-bold text-lg;
}
&__plage-horaire {
@apply self-end text-right;
}
}
}