1
0
mirror of https://github.com/mattermost/focalboard.git synced 2024-12-24 13:43:12 +02:00

Fixed flex-wrap to display all emojis (#4355)

* Fixed flex-wrap to display all emojis

* Lint fix
This commit is contained in:
Harshil Sharma 2022-12-16 21:15:45 +05:30 committed by GitHub
parent e092abb45f
commit f8bc56bfdc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View File

@ -45,8 +45,7 @@ const manifestStr = `
"type": "bool", "type": "bool",
"help_text": "This allows board editors to share boards that can be accessed by anyone with the link.", "help_text": "This allows board editors to share boards that can be accessed by anyone with the link.",
"placeholder": "", "placeholder": "",
"default": false, "default": false
"hosting": ""
} }
] ]
} }

View File

@ -237,4 +237,9 @@ html {
width: 48px; width: 48px;
} }
} }
.emoji-mart-category-list {
display: flex;
flex-wrap: wrap;
}
} }