Init nav UI

This commit is contained in:
2023-07-17 15:47:16 +07:00
commit d0a548d7b4
24 changed files with 4374 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
.btn {
align-self: center;
display: none;
padding: 13px 20px;
background-color: $primary-color;
border-radius: 100px;
font-size: $fs-md;
color: $white;
text-decoration: none;
white-space: nowrap;
transition: 0.2s;
}
@media screen and (min-width: 840px) {
.btn {
display: block;
&:hover {
background-color: $secondary-color;
}
}
}