chore: change graph list layout to grid in explorer view (#7852)

This commit is contained in:
Amlan Kumar Nandy 2025-05-09 12:38:51 +07:00 committed by GitHub
parent c03541cd6c
commit 0ab50da7b0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -55,6 +55,8 @@
} }
.explore-content { .explore-content {
margin-top: 10px;
.ant-space { .ant-space {
margin-top: 10px; margin-top: 10px;
margin-bottom: 20px; margin-bottom: 20px;
@ -75,16 +77,14 @@
} }
.time-series-container { .time-series-container {
display: flex; display: grid;
gap: 10px; grid-template-columns: repeat(
auto-fit,
minmax(min(100%, calc(50% - 8px)), 1fr)
);
gap: 16px;
width: 100%; width: 100%;
height: fit-content; height: fit-content;
overflow-y: scroll;
.time-series-view {
min-width: 80%;
width: 80%;
}
} }
.related-metrics-container { .related-metrics-container {