1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-02 20:59:30 +00:00

Added homeNav component

This commit is contained in:
2022-01-25 20:11:27 +00:00
parent 6fe851c63a
commit 24ca02a7a5
3 changed files with 30 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
.homeNav {
display: flex;
flex-direction: column;
align-items: center;
padding: 0.5em 1em;
&__buttons {
display: grid;
grid-template-columns: repeat(2, 1fr);
align-items: center;
justify-items: end;
gap: 1em;
}
@include respond-to('medium') {
flex-direction: row;
justify-content: space-between;
}
}