mirror of
https://github.com/bakhirev/assayo.git
synced 2025-04-22 17:49:12 +00:00
26 lines
No EOL
481 B
SCSS
26 lines
No EOL
481 B
SCSS
@import '../../../styles/variables';
|
|
|
|
.external_link {
|
|
font-size: var(--font-s);
|
|
font-weight: 100;
|
|
|
|
display: inline-block;
|
|
padding: 0;
|
|
margin: 0 var(--space-s) 0 0;
|
|
|
|
box-sizing: border-box;
|
|
background-color: transparent;
|
|
border: none;
|
|
white-space: normal;
|
|
text-overflow: ellipsis;
|
|
|
|
line-height: var(--font-s);
|
|
cursor: pointer;
|
|
text-decoration: underline;
|
|
|
|
color: var(--color-first);
|
|
|
|
&:hover {
|
|
text-decoration: none;
|
|
}
|
|
} |