phudak3 / ckeditor5-emoji

Emoji plugin for CKEditor 5
Other
14 stars 3 forks source link

Possible UI Fix #3

Closed TehWazzard closed 1 year ago

TehWazzard commented 1 year ago

Hi,

not so much an issue, this a potential fix for other users where the UI does not display as a grid

the following CSS Fix seems to work for me.

.ck-character-grid__tiles {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  height:200px!important;
  overflow-y: auto;
}
image