feat(landing): buttons

This commit is contained in:
Matthieu Bessat 2024-01-10 19:07:03 +01:00
parent 4dfa2b3633
commit 9f4db699bc
3 changed files with 45 additions and 7 deletions

View file

@ -32,3 +32,22 @@
color: white;
}
}
.button.button-light {
background-color: transparent;
border-color: $accent;
border-width: 1px;
border-style: solid;
color: $accent;
&:hover {
background-color: transparent;
color: white;
background-color: $accent;
}
}
.button.button-sm {
font-size: 1rem;
font-weight: 500;
}

View file

@ -171,3 +171,9 @@ img {
}
}
}
.end-action-container {
display: flex;
justify-content: flex-end;
padding-bottom: 1.5rem;
}