This commit is contained in:
isUnknown 2025-02-03 13:32:17 +01:00
parent 5d927217f9
commit 69f4cddd00

View file

@ -154,9 +154,30 @@ button.see-more {
} }
/* ================= TEXT ITEM ================= */ /* ================= TEXT ITEM ================= */
.text { .panel .text {
margin-bottom: var(--unit--vertical); margin-bottom: var(--unit--vertical);
} }
.panel .text:first-child,
.panel .text:last-child {
margin-bottom: calc(var(--unit--vertical) * 2);
}
.panel .text:first-child .text__title {
display: inline-block;
padding-left: var(--unit--horizontal);
}
.panel .text:first-child .text__infos {
padding-left: var(--unit--horizontal);
}
.panel .text:first-child .text__infos::before {
content: "";
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 1px;
background-color: #fff;
}
@media screen and (min-width: 640px) { @media screen and (min-width: 640px) {
nav.panel { nav.panel {