Add scrollbar for sidebar tabs

This commit is contained in:
Piotr Rogowski 2021-03-28 19:17:55 +02:00
parent e7e851ae4b
commit 4f01067d85
No known key found for this signature in database
GPG Key ID: F40F61D5587F5673
2 changed files with 8 additions and 0 deletions

View File

@ -63,6 +63,12 @@ body {
overflow-x: hidden;
}
.ant-tabs-tabpane {
height: calc(100vh - @layout-header-height - @layout-footer-height - @layout-trigger-height - @tabs-nav-height);
overflow-y: auto;
overflow-x: hidden;
}
.table {
margin: 20px;

View File

@ -12,3 +12,5 @@
@bars-z-index: 5;
@zindex-modal: 1080;
@box-shadow: 0 3px 6px -4px rgb(0 0 0 e('/') 12%), 0 6px 16px 0 rgb(0 0 0 e('/') 8%), 0 9px 28px 8px rgb(0 0 0 e('/') 5%);
@tabs-nav-height: 62px;