soapbox/app/styles/components/badge.scss

24 lines
387 B
SCSS
Raw Normal View History

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