mirror of https://github.com/fantasticit/think.git
25 lines
341 B
SCSS
25 lines
341 B
SCSS
.wrap {
|
|
height: 300px;
|
|
overflow: auto;
|
|
}
|
|
|
|
.listWrap {
|
|
display: flex;
|
|
width: 320px;
|
|
padding: 0;
|
|
margin: 0;
|
|
list-style: none;
|
|
flex-wrap: wrap;
|
|
|
|
> li {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 32px;
|
|
height: 32px;
|
|
padding: 4px;
|
|
font-size: 24px;
|
|
cursor: pointer;
|
|
}
|
|
}
|