52 lines
929 B
CSS
52 lines
929 B
CSS
.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;
|
|
}
|
|
}
|
|
}
|