34 lines
445 B
SCSS
34 lines
445 B
SCSS
|
@import '../mixins';
|
||
|
@import '../../stylesheets/variables';
|
||
|
|
||
|
.base {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
justify-content: flex-end;
|
||
|
margin-top: 3px;
|
||
|
}
|
||
|
|
||
|
.item {
|
||
|
margin-left: 6px;
|
||
|
font: {
|
||
|
size: 11px;
|
||
|
family: $inter;
|
||
|
weight: normal;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.bubble {
|
||
|
composes: item;
|
||
|
color: rgba(255, 255, 255, 0.8);
|
||
|
}
|
||
|
|
||
|
.light {
|
||
|
composes: item;
|
||
|
color: $color-gray-60;
|
||
|
}
|
||
|
|
||
|
.dark {
|
||
|
composes: item;
|
||
|
color: rgba(255, 255, 255, 0.8);
|
||
|
}
|