16 lines
263 B
CSS
16 lines
263 B
CSS
.root {
|
|
list-style-type: none;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
inline-size: 100%;
|
|
block-size: 100%;
|
|
overflow: hidden;
|
|
position: relative;
|
|
padding: 0;
|
|
margin: 0;
|
|
.li:not(:last-of-type) {
|
|
margin-inline-end: 4px;
|
|
}
|
|
}
|