Fix : Scroll issues for data assets widgets and Explore page horizontal scroll (#20854)

* fix scroll issues for data assets widgets on persona page

* fix total data assets overflow issue

* fix horizontal scroll issue on explore page
This commit is contained in:
Shrushti Polekar 2025-04-16 16:31:36 +05:30 committed by GitHub
parent 6484401eef
commit 04c327189b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 9 additions and 1 deletions

View File

@ -61,6 +61,7 @@
.explore-main-container {
height: 100%;
overflow-y: auto;
overflow-x: hidden;
}
.explore-data-container {

View File

@ -13,6 +13,10 @@
@import (reference) url('../../../../styles/variables.less');
.data-assets-explore-widget-container {
.ant-card-body {
overflow-y: hidden !important;
max-height: none !important;
}
.data-assets-explore-widget-body {
height: 265px;
overflow-x: hidden;
@ -37,7 +41,8 @@
flex-direction: column;
text-align: center;
align-items: center;
padding: 20px 0;
padding: 10px 0;
max-height: 100%;
.data-asset-badge {
width: max-content;

View File

@ -23,6 +23,8 @@
.total-entity-insight-summary-container {
scrollbar-width: none;
height: 100%;
overflow-y: auto;
&::-webkit-scrollbar {
display: none;