This commit is contained in:
2026-04-20 14:56:15 +02:00
parent e0b63ca5f9
commit aab20899ff
3 changed files with 29 additions and 2 deletions

View File

@@ -233,3 +233,30 @@ p {
object-position: top center;
}
}
.flex-list {
ul {
list-style: none;
padding: 0;
margin: 0;
display: grid;
grid-template-columns: 1fr 1fr;
column-gap: 28px;
li {
position: relative;
padding-left: 24px;
&::before {
content: '';
font-family: 'Open Sans', Sans-serif;
font-weight: 700;
color: #1e1756;
position: absolute;
top: 0;
left: 0px;
}
}
}
}