22 lines
440 B
SCSS
22 lines
440 B
SCSS
.badge {
|
|
display: flex;
|
|
align-items: center;
|
|
margin: 0 auto;
|
|
padding: 0 6px;
|
|
background-color: $color-secondary-light;
|
|
border-radius: 100vh;
|
|
text-transform: uppercase;
|
|
color: $color-primary-darker;
|
|
font-weight: 500;
|
|
letter-spacing: 1px;
|
|
line-height: 1;
|
|
min-height: 16px;
|
|
margin-top: 20px;
|
|
|
|
// Small size
|
|
&--small {
|
|
span {
|
|
font-size: rem(7px);
|
|
}
|
|
}
|
|
} |