2022 updates

This commit is contained in:
Andre Beging
2022-04-24 19:21:10 +02:00
parent 6db1e96c43
commit 9bd278379b
26 changed files with 448 additions and 138 deletions

28
src/style/_faq.scss Normal file
View File

@@ -0,0 +1,28 @@
.question-container {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 1em;
@media only screen and (max-width: 1200px) {
grid-template-columns: auto;
}
.question {
list-style-type: none;
padding: 10px 15px;
margin: 0;
border: 1px solid #bdbdbd;
li {
&:first-child {
padding-bottom: 5px;
h2 {
margin: 0;
}
}
}
}
}