Skip to content

Commit 707c684

Browse files
author
Josh Callender
committed
changed the layout for the .navigation class so it displays at the top on mobile, removed all the extra margins around this navigation change, and removed the footer on mobile.
1 parent 7e0623f commit 707c684

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

_sass/_layout.scss

+26
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,9 @@
9999
width: calc(100% - (#{$spacing-unit} / 2));
100100
}
101101

102+
.footer {
103+
display: none;
104+
}
102105
}
103106

104107
@include media-query(875px) {
@@ -259,4 +262,27 @@
259262
a {
260263
font-weight: bold;
261264
}
265+
266+
}
267+
268+
@include media-query($on-palm) {
269+
.navigation {
270+
border-bottom: 1px solid #ccc;
271+
border-right: 0;
272+
position: inherit;
273+
width: 100%;
274+
height: 200px;
275+
padding: 10px;
276+
font-size: 16px;
277+
}
278+
279+
.page-content {
280+
margin: 10px;
281+
padding: 0px;
282+
}
283+
284+
.site-footer {
285+
display: none;
286+
}
262287
}
288+

0 commit comments

Comments
 (0)