mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-25 19:40:24 +00:00
32 lines
496 B
SCSS
32 lines
496 B
SCSS
.DynamicColumnTable {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
|
|
.dynamicColumnTable-button {
|
|
align-self: flex-end;
|
|
margin: 10px 0;
|
|
|
|
&.filter-btn {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
}
|
|
}
|
|
|
|
.dynamicColumnsTable-items {
|
|
display: flex;
|
|
width: 10.625rem;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.dynamicColumnsTable-items {
|
|
flex-direction: column;
|
|
width: auto;
|
|
text-align: center;
|
|
}
|
|
}
|