Move responsive menu styles to its proper file

We forgot to do so in commit 49cb6e010.
This commit is contained in:
Javi Martín
2024-04-14 01:59:23 +02:00
parent 520f0c42d4
commit 618fc4b2c0
2 changed files with 13 additions and 12 deletions

View File

@@ -588,18 +588,6 @@ body > header,
}
}
.menu-button {
border: 1px solid;
border-radius: $button-radius;
color: inherit;
padding: 0.6em;
}
.menu-icon {
@include hamburger($color: currentcolor, $color-hover: currentcolor);
cursor: inherit;
}
.dropdown.menu > li {
a {

View File

@@ -0,0 +1,13 @@
[data-responsive-toggle=responsive_menu] {
.menu-button {
border: 1px solid;
border-radius: $button-radius;
color: inherit;
padding: 0.6em;
}
.menu-icon {
@include hamburger($color: currentcolor, $color-hover: currentcolor);
cursor: inherit;
}
}