19 lines
355 B
SCSS
19 lines
355 B
SCSS
body > a {
|
|
$link-offset: .3rem;
|
|
position: absolute;
|
|
inset-block-start: $link-offset;
|
|
inset-inline-start: $link-offset;
|
|
z-index: 99999;
|
|
padding: .4rem 1rem;
|
|
|
|
&:not(:focus) {
|
|
size: 1px;
|
|
margin: -1px;
|
|
padding: 0;
|
|
white-space: nowrap;
|
|
border: 0;
|
|
clip: rect(0 0 0 0);
|
|
clip-path: inset(50%);
|
|
overflow: hidden;
|
|
}
|
|
} |