feat: handled inactive tab handling by removing the display flex override (#4708)

Co-authored-by: Sagar Rajput <sagarrajput@192.168.1.2>
This commit is contained in:
SagarRajput-7 2024-03-15 12:19:07 +05:30 committed by GitHub
parent cf22039562
commit 0365fa5421
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 7 deletions

View File

@ -1,10 +1,4 @@
.logs-module-container {
// margin: 0 -1rem; // as we have added a margin of 0 1rem components container, have to adjust the margin with negative to style the logs explorer as we want
// .ant-tabs-content-holder {
// margin: 0 -1rem;
// }
flex: 1;
display: flex;
flex-direction: column;
@ -54,4 +48,4 @@
}
}
}
}
}

View File

@ -2,4 +2,8 @@
.ant-tabs-content {
padding: 0 16px;
}
.ant-tabs-tabpane-hidden {
display: none !important;
}
}