34 lines
414 B
SCSS
34 lines
414 B
SCSS
.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;
|
|
}
|
|
|
|
.hide {
|
|
@include hide;
|
|
}
|
|
|
|
@mixin unhide {
|
|
border: unset;
|
|
clip: unset;
|
|
height: unset;
|
|
margin: unset;
|
|
overflow: unset;
|
|
padding: unset;
|
|
position: unset;
|
|
width: unset;
|
|
}
|
|
|
|
@mixin line-max {
|
|
max-width: 45em;
|
|
}
|