Profectus-Niffix/src/components/common/modifiers.css

22 lines
364 B
CSS
Raw Normal View History

.modifier-container {
display: flex;
2022-12-10 02:24:14 -06:00
padding: 1px 8px;
}
2022-04-16 18:37:40 -05:00
.modifier-container:nth-child(2n) {
background: var(--raised-background);
}
.modifier-amount {
flex-shrink: 0;
2022-12-10 02:24:14 -06:00
text-align: right;
}
2023-02-15 21:58:06 -06:00
:not(:first-of-type, :last-of-type) > .modifier-amount::after {
content: var(--unit);
opacity: 0;
}
.modifier-description {
flex-grow: 1;
}