mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2026-01-06 12:36:56 +00:00
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:
parent
6484401eef
commit
04c327189b
@ -61,6 +61,7 @@
|
||||
.explore-main-container {
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.explore-data-container {
|
||||
|
||||
@ -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;
|
||||
|
||||
@ -23,6 +23,8 @@
|
||||
|
||||
.total-entity-insight-summary-container {
|
||||
scrollbar-width: none;
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
|
||||
&::-webkit-scrollbar {
|
||||
display: none;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user