1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-10-16 20:17:25 +00:00
pds-2021-g2-nest/nest_frontend/components/base/Badge.module.css

38 lines
551 B
CSS

.Badge {
display: inline-flex;
gap: 5px;
padding: 0 5px;
border-radius: 25px;
margin: 0 2px;
}
.BadgeRed {
background-color: var(--bg-red);
color: var(--fg-red)
}
.BadgeYellow {
background-color: var(--bg-yellow);
color: var(--fg-yellow)
}
.BadgeGrey {
background-color: var(--bg-grey);
color: var(--fg-grey)
}
.BadgeGreen {
background-color: var(--bg-green);
color: var(--fg-green)
}
.Text {
max-width: 350px;
overflow-x: hidden;
}
.Icon {
width: 15px;
text-align: center;
}