diff options
author | Jan C. Borchardt <hey@jancborchardt.net> | 2020-10-01 23:34:19 +0200 |
---|---|---|
committer | Jan C. Borchardt <hey@jancborchardt.net> | 2020-10-01 23:34:19 +0200 |
commit | b1d0fd27c1b6816a6fea113e6feba468104d1fc1 (patch) | |
tree | aa6cbb0daa17a505440d4a9fb582dd26db71403a /apps/user_status/src | |
parent | f240794f2b9990e6a56b6dd7067c219e7fe1d591 (diff) | |
download | nextcloud-server-b1d0fd27c1b6816a6fea113e6feba468104d1fc1.tar.gz nextcloud-server-b1d0fd27c1b6816a6fea113e6feba468104d1fc1.zip |
Enable scrollbar for too long content, same way as in Dashboard customize
Signed-off-by: Jan C. Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'apps/user_status/src')
-rw-r--r-- | apps/user_status/src/components/SetStatusModal.vue | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/user_status/src/components/SetStatusModal.vue b/apps/user_status/src/components/SetStatusModal.vue index 96223ba7e01..4c2d8e937cc 100644 --- a/apps/user_status/src/components/SetStatusModal.vue +++ b/apps/user_status/src/components/SetStatusModal.vue @@ -233,6 +233,9 @@ export default { min-width: 500px; min-height: 200px; padding: 8px 20px 20px 20px; + // Enable scrollbar for too long content, same way as in Dashboard customize + max-height: 70vh; + overflow: auto; &__header { text-align: center; |