18 lines
302 B
SCSS
18 lines
302 B
SCSS
|
.skip-nav {
|
||
|
&:active,
|
||
|
&:focus {
|
||
|
position: absolute;
|
||
|
top: 15px;
|
||
|
left: 10px;
|
||
|
border: 1px solid $white;
|
||
|
background-color: $gray-dark;
|
||
|
padding: 5px 10px;
|
||
|
width: auto;
|
||
|
height: auto;
|
||
|
overflow: visible;
|
||
|
white-space: normal;
|
||
|
color: $white;
|
||
|
clip: auto;
|
||
|
}
|
||
|
}
|