bigbuffet-rw/app/styles/components/badge.scss

24 lines
387 B
SCSS
Raw Normal View History

2020-06-02 19:11:01 -07:00
.badge {
2022-03-21 11:09:01 -07:00
@apply inline-flex items-center px-2 py-0.5 rounded text-xs font-medium bg-primary-600 text-white;
2020-06-02 19:11:01 -07:00
2020-07-04 15:11:38 -07:00
&--patron {
2022-03-21 11:09:01 -07:00
@apply bg-primary-600 text-white;
2020-06-02 19:11:01 -07:00
}
&--admin {
2022-03-21 11:09:01 -07:00
@apply bg-black;
2020-06-02 19:11:01 -07:00
}
&--moderator {
2022-03-21 11:09:01 -07:00
@apply bg-cyan-600 text-white;
2020-06-02 19:11:01 -07:00
}
2021-01-18 10:55:38 -08:00
&--bot {
2022-03-21 11:09:01 -07:00
@apply bg-gray-100 text-gray-800;
}
&--opaque {
@apply bg-white bg-opacity-75 text-gray-900;
2021-01-18 10:55:38 -08:00
}
2020-06-02 19:11:01 -07:00
}