From 5668eea40aad16c02619cdb10f167e4940908dce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=98=D0=B2=D0=B0=D0=BD?= Date: Sun, 27 Sep 2020 02:07:17 +0300 Subject: [PATCH] fix: tabset tabs can't be scrolled (#2442) * fix: tabset tabs can't be scrolled Fix for #2091. The change advised in that issue works brilliantly. * fix: tabset scrollbar is visible even if unnecessary * fix: tabset tall headers Co-authored-by: Nicolas Giard --- client/themes/default/components/tabset.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/themes/default/components/tabset.vue b/client/themes/default/components/tabset.vue index cb3d6b57..0b240c70 100644 --- a/client/themes/default/components/tabset.vue +++ b/client/themes/default/components/tabset.vue @@ -60,11 +60,11 @@ export default { padding-left: 0; margin: 0; display: flex; - align-items: center; + align-items: stretch; background: linear-gradient(to bottom, #FFF, #FAFAFA); box-shadow: inset 0 -1px 0 0 #DDD; border-radius: 5px 5px 0 0; - overflow: hidden; + overflow: auto; @at-root .theme--dark & { background: linear-gradient(to bottom, #424242, #333);