|
@@ -317,3 +317,39 @@ a {
|
|
|
.footer-navigation .footer-menu a {
|
|
|
font-size: map-deep-get($config-global, "font", "size", "xs");
|
|
|
}
|
|
|
+
|
|
|
+// Updates the Mobile Navigation to be next to the site title.
|
|
|
+.mobile-nav-side .site-title,
|
|
|
+.mobile-nav-side .site-description {
|
|
|
+ @include media(mobile-only) {
|
|
|
+ margin-right: 90px; /** This number is magic. */
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.mobile-nav-side .main-navigation {
|
|
|
+ @include media(mobile-only) {
|
|
|
+ #toggle-menu {
|
|
|
+ position: absolute;
|
|
|
+ top: $baseline-unit;
|
|
|
+ right: 2 * $baseline-unit;
|
|
|
+ }
|
|
|
+
|
|
|
+ .dropdown-icon {
|
|
|
+ /* This is fixed the issue whent the button changes sizes */
|
|
|
+ font-family: Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma;
|
|
|
+ }
|
|
|
+
|
|
|
+ .menu-main-menu-container {
|
|
|
+ background: #{map-deep-get($config-global, "color", "background", "light") };
|
|
|
+ margin:0 ( -2 * $baseline-unit );
|
|
|
+ padding: 0 (2 * $baseline-unit) $baseline-unit;
|
|
|
+ .sub-menu {
|
|
|
+ padding-left: 2 * $baseline-unit;
|
|
|
+ }
|
|
|
+ a {
|
|
|
+ padding: $baseline-unit 0;
|
|
|
+ line-height: 1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|