Merge pull request #235 from dod-ccpo/ie/navigation-collapsing
fix hide/unhide mixins
This commit is contained in:
commit
801b0234ed
@ -5,6 +5,7 @@
|
||||
@mixin hide {
|
||||
border: 0;
|
||||
clip: rect(0 0 0 0);
|
||||
clip-path: inset(100%);
|
||||
height: 1px;
|
||||
margin: -1px;
|
||||
overflow: hidden;
|
||||
@ -18,14 +19,13 @@
|
||||
}
|
||||
|
||||
@mixin unhide {
|
||||
border: unset;
|
||||
clip: unset;
|
||||
height: unset;
|
||||
margin: unset;
|
||||
overflow: unset;
|
||||
padding: unset;
|
||||
position: unset;
|
||||
width: unset;
|
||||
clip: auto;
|
||||
clip-path: none;
|
||||
height: auto;
|
||||
overflow: visible;
|
||||
position: static;
|
||||
white-space: inherit;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
@mixin line-max {
|
||||
|
Loading…
x
Reference in New Issue
Block a user