think/packages/client/src/tiptap/menus/emoji/index.module.scss

25 lines
341 B
SCSS
Raw Normal View History

2022-02-20 11:51:55 +00:00
.wrap {
height: 300px;
overflow: auto;
}
.listWrap {
display: flex;
width: 320px;
padding: 0;
margin: 0;
2022-03-27 07:43:06 +00:00
list-style: none;
flex-wrap: wrap;
2022-02-20 11:51:55 +00:00
> li {
display: flex;
justify-content: center;
2022-03-27 07:43:06 +00:00
align-items: center;
width: 32px;
height: 32px;
2022-02-20 11:51:55 +00:00
padding: 4px;
2022-03-27 07:43:06 +00:00
font-size: 24px;
2022-02-20 11:51:55 +00:00
cursor: pointer;
}
}