2023-01-25 15:13:56 +00:00
|
|
|
.pill-row
|
|
|
|
margin: 0
|
|
|
|
padding: 0
|
|
|
|
|
|
|
|
width: 100%
|
|
|
|
height: auto
|
|
|
|
|
|
|
|
display: flex
|
|
|
|
justify-content: center
|
|
|
|
align-items: center
|
|
|
|
gap: 0.5rem
|
|
|
|
|
|
|
|
> div
|
|
|
|
margin: 0
|
|
|
|
padding: 0
|
|
|
|
|
|
|
|
display: flex
|
|
|
|
|
2023-04-08 19:32:04 +00:00
|
|
|
background-color: RGB($bg-200)
|
2023-01-25 15:13:56 +00:00
|
|
|
border-radius: $rad
|
|
|
|
|
2023-04-06 18:42:04 +00:00
|
|
|
.pill-text
|
|
|
|
margin: 0
|
|
|
|
padding: 0.5rem
|
|
|
|
|
|
|
|
width: auto
|
|
|
|
height: 2.5rem
|
|
|
|
|
|
|
|
display: flex
|
|
|
|
justify-content: center
|
|
|
|
align-items: center
|
|
|
|
|
|
|
|
position: relative
|
|
|
|
|
|
|
|
text-align: center
|
|
|
|
font-size: 1rem
|
2023-04-08 19:32:04 +00:00
|
|
|
font-weight: 400
|
2023-04-06 18:42:04 +00:00
|
|
|
|
|
|
|
color: RGB($fg-white)
|
|
|
|
|
2023-01-25 15:13:56 +00:00
|
|
|
.pill-item
|
|
|
|
margin: 0
|
|
|
|
padding: 0.5rem
|
|
|
|
|
|
|
|
width: 2.5rem
|
|
|
|
height: 2.5rem
|
|
|
|
|
|
|
|
display: flex
|
|
|
|
justify-content: center
|
|
|
|
align-items: center
|
|
|
|
|
|
|
|
position: relative
|
|
|
|
|
|
|
|
border: none
|
|
|
|
background-color: transparent
|
2023-03-25 16:22:32 +00:00
|
|
|
color: RGB($fg-white)
|
2023-01-25 15:13:56 +00:00
|
|
|
|
|
|
|
svg
|
|
|
|
width: 1.25rem
|
|
|
|
height: 1.25rem
|
|
|
|
|
|
|
|
&:hover
|
|
|
|
cursor: pointer
|
|
|
|
|
2023-03-25 16:22:32 +00:00
|
|
|
color: RGB($primary)
|
2023-01-25 15:13:56 +00:00
|
|
|
|
|
|
|
.pill__critical
|
2023-03-25 16:22:32 +00:00
|
|
|
color: RGB($critical)
|
2023-01-25 15:13:56 +00:00
|
|
|
|
|
|
|
span
|
2023-03-25 20:24:38 +00:00
|
|
|
background: RGB($critical)
|
|
|
|
color: RGB($fg-white)
|
|
|
|
|
|
|
|
svg
|
|
|
|
color: RGB($critical)
|
2023-01-25 15:13:56 +00:00
|
|
|
|
|
|
|
&:hover
|
2023-03-25 16:22:32 +00:00
|
|
|
color: RGB($fg-white)
|
2023-01-25 15:13:56 +00:00
|
|
|
|
|
|
|
.pill__info
|
2023-03-25 16:22:32 +00:00
|
|
|
color: RGB($info)
|
2023-01-25 15:13:56 +00:00
|
|
|
|
|
|
|
span
|
2023-03-25 16:22:32 +00:00
|
|
|
color: RGB($info)
|
2023-01-25 15:13:56 +00:00
|
|
|
|
|
|
|
&:hover
|
2023-03-25 16:22:32 +00:00
|
|
|
color: RGB($fg-white)
|
2023-01-25 15:13:56 +00:00
|
|
|
|
2023-03-25 20:24:38 +00:00
|
|
|
@media (max-width: $breakpoint)
|
|
|
|
.tool-tip
|
|
|
|
display: none
|