assayo/src/ts/components/ExternalLink/index.module.scss
2023-09-22 11:02:55 +03:00

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;
}
}