Files
housesof/src/style/atoms/_badge.scss

23 lines
494 B
SCSS

/*
** Badge
*/
.badge {
display: inline-flex;
justify-content: center;
text-align: center;
color: $color-primary-darker;
font-family: $font-sans-sb;
text-transform: uppercase;
letter-spacing: 1px;
background-color: $color-secondary-light;
box-shadow: 0 0 0 4px rgba($color-tertiary, 0.15);
border-radius: 50vh;
// Small size
&--small {
height: 14px;
padding: 0 4px;
font-size: rem(7px);
line-height: 15px;
}
}