30 lines
486 B
CSS
30 lines
486 B
CSS
.dashboard {
|
|
display: grid;
|
|
grid-template-columns: 1fr 3fr;
|
|
gap: 16px;
|
|
width: 100%;
|
|
min-width: 0;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.panel {
|
|
border: 1px solid var(--color-border, #e2e8f0);
|
|
border-radius: 8px;
|
|
background: var(--color-bg, #fff);
|
|
padding: 14px 16px;
|
|
min-width: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 0;
|
|
}
|
|
|
|
.panelUsers {
|
|
padding: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
@media (max-width: 900px) {
|
|
.dashboard {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|