36 lines
728 B
SCSS
36 lines
728 B
SCSS
@use "sass:math";
|
|
|
|
$flair-size: 18px;
|
|
|
|
.select-kit.flair-chooser {
|
|
.select-kit-header,
|
|
.flair-row {
|
|
.avatar-flair {
|
|
align-items: center;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: $flair-size $flair-size;
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-right: 5px;
|
|
height: $flair-size;
|
|
width: $flair-size;
|
|
|
|
&.rounded {
|
|
background-size: math.div($flair-size, 1.4) math.div($flair-size, 1.4);
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.d-icon {
|
|
display: block;
|
|
height: math.div($flair-size, 1.8);
|
|
width: math.div($flair-size, 1.8);
|
|
}
|
|
}
|
|
|
|
span {
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
}
|