feat(landing): trailer and articles section

This commit is contained in:
Matthieu Bessat 2024-02-26 13:01:42 +01:00
parent 70a8884495
commit d5d67f7069
22 changed files with 942 additions and 165 deletions

23
assets/sass/alert.scss Normal file
View file

@ -0,0 +1,23 @@
.alert {
border: 2px solid $accent;
background-color: darken($accent, 10%);
color: white;
border-radius: 3px;
padding: 1rem 2rem;
margin: 1rem 0;
width: 100%;
.alert-split-content {
display: flex;
justify-content: space-between;
}
}
@media (max-width: $md-breakpoint) {
.alert {
.alert-split-content {
display: block;
}
}
}