mirror of
https://github.com/kremalicious/blog.git
synced 2025-02-14 21:10:25 +01:00
20 lines
344 B
SCSS
20 lines
344 B
SCSS
@import 'variables';
|
|
|
|
.account {
|
|
font-size: $font-size-mini;
|
|
color: $brand-grey-light;
|
|
max-width: 8rem;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.identicon {
|
|
border-radius: 50%;
|
|
overflow: hidden;
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
margin-right: $spacer / 8;
|
|
margin-left: $spacer;
|
|
}
|