global nav and topbar

This commit is contained in:
Andrew Croce
2018-07-20 08:29:14 -04:00
parent 7ed3d50c2e
commit 4d949b5922
4 changed files with 129 additions and 0 deletions

View File

@@ -1,3 +1,25 @@
.nowrap {
white-space: nowrap;
}
@mixin hide {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
@mixin unhide {
border: unset;
clip: unset;
height: unset;
margin: unset;
overflow: unset;
padding: unset;
position: unset;
width: unset;
}