forked from profectus/Profectus
16 lines
234 B
CSS
16 lines
234 B
CSS
.modifier-container {
|
|
display: flex;
|
|
}
|
|
|
|
.modifier-container:nth-child(2n) {
|
|
background: var(--raised-background);
|
|
}
|
|
|
|
.modifier-amount {
|
|
flex-basis: 100px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.modifier-description {
|
|
flex-grow: 1;
|
|
}
|