2021-05-18 14:23:54 +00:00
|
|
|
.Badge {
|
2021-04-29 02:27:06 +00:00
|
|
|
display: inline-flex;
|
|
|
|
|
|
|
|
gap: 5px;
|
|
|
|
padding: 0 5px;
|
|
|
|
border-radius: 25px;
|
|
|
|
margin: 0 2px;
|
|
|
|
}
|
|
|
|
|
2021-05-18 14:23:54 +00:00
|
|
|
.BadgeRed {
|
2021-04-29 02:27:06 +00:00
|
|
|
background-color: var(--bg-red);
|
|
|
|
color: var(--fg-red)
|
|
|
|
}
|
|
|
|
|
2021-05-18 14:23:54 +00:00
|
|
|
.BadgeYellow {
|
2021-04-29 02:27:06 +00:00
|
|
|
background-color: var(--bg-yellow);
|
|
|
|
color: var(--fg-yellow)
|
|
|
|
}
|
|
|
|
|
2021-05-18 14:23:54 +00:00
|
|
|
.BadgeGrey {
|
2021-04-29 02:27:06 +00:00
|
|
|
background-color: var(--bg-grey);
|
|
|
|
color: var(--fg-grey)
|
|
|
|
}
|
|
|
|
|
2021-05-18 14:23:54 +00:00
|
|
|
.BadgeGreen {
|
2021-04-29 02:27:06 +00:00
|
|
|
background-color: var(--bg-green);
|
|
|
|
color: var(--fg-green)
|
|
|
|
}
|
|
|
|
|
2021-05-07 03:02:20 +00:00
|
|
|
.Text {
|
|
|
|
max-width: 350px;
|
|
|
|
overflow-x: hidden;
|
|
|
|
}
|
|
|
|
|
2021-04-29 02:27:06 +00:00
|
|
|
.Icon {
|
|
|
|
width: 15px;
|
|
|
|
text-align: center;
|
2021-05-18 14:23:54 +00:00
|
|
|
}
|