wrap indicator for grid

This commit is contained in:
2025-02-23 18:58:32 -05:00
parent 84d21239ed
commit 4950695388
8 changed files with 91 additions and 39 deletions

View File

@ -1,5 +1,15 @@
@use "../variables.scss";
@mixin navigation-button {
button {
padding: 0 20px 0 20px;
&:hover {
background-color: white;
& > a { color: black; }
}
}
}
@mixin navigation {
.header-left {
height: 100%;
@ -7,16 +17,10 @@
background-color: rgb(0,0,0);
}
.header-right {
@include navigation-button;
display: flex;
height: 100%;
button {
padding: 0 20px 0 20px;
&:hover {
background-color: white;
& > a { color: black; }
}
}
}
}