9 lines
182 B
Plaintext
9 lines
182 B
Plaintext
.box {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(0, max-content));
|
|
column-gap: 16rpx;
|
|
row-gap: 16rpx;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|