27 lines
No EOL
513 B
SCSS
27 lines
No EOL
513 B
SCSS
.author-card {
|
|
display: inline-flex;
|
|
.author-card__link {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
&:after {
|
|
display: none !important; // suppress "external links" icon
|
|
}
|
|
}
|
|
&__avatar {
|
|
inline-size: 3em;
|
|
block-size: 3em;
|
|
border-radius: 100em;
|
|
display: inline-block;
|
|
margin-inline-end: 0.5em;
|
|
&:not(img) {
|
|
background: var(--ui-overlay-transparent);
|
|
}
|
|
}
|
|
&__name {
|
|
font-weight: bold;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
}
|
|
} |