diff options
| author | Johann150 <johann.galle@protonmail.com> | 2021-11-05 02:48:37 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-05 10:48:37 +0900 |
| commit | 9b18104343bc25fec766299b5caf6a4b65ef1cc7 (patch) | |
| tree | 581dba62ddb3d9a06224a2b6c6b44b42e25be1f2 /src/client/components | |
| parent | enhane: 完全ログアウト時にすべてのタブがウェルカムペー... (diff) | |
| download | sharkey-9b18104343bc25fec766299b5caf6a4b65ef1cc7.tar.gz sharkey-9b18104343bc25fec766299b5caf6a4b65ef1cc7.tar.bz2 sharkey-9b18104343bc25fec766299b5caf6a4b65ef1cc7.zip | |
limit menu list size (#7950)
This can be an issue for example when adding an object to the room.
Diffstat (limited to 'src/client/components')
| -rw-r--r-- | src/client/components/ui/menu.vue | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/components/ui/menu.vue b/src/client/components/ui/menu.vue index aaef527f1a..5b3a0ae7c2 100644 --- a/src/client/components/ui/menu.vue +++ b/src/client/components/ui/menu.vue @@ -147,6 +147,8 @@ export default defineComponent({ .rrevdjwt { padding: 8px 0; min-width: 200px; + max-height: 90vh; + overflow: auto; &.center { > .item { |