15 lines
266 B
CSS
15 lines
266 B
CSS
.tweened {
|
|
display: flex;
|
|
align-content: end;
|
|
justify-content: end;
|
|
}
|
|
.tweened>div:first-child {
|
|
text-align: right;
|
|
min-width: 1.5rem;
|
|
}
|
|
.tweened>div:nth-child(0n+2) {
|
|
min-width: 1.5rem;
|
|
}
|
|
.tweened>div:nth-child(0n+3) {
|
|
min-width: 2rem;
|
|
} |