Spaces:
Sleeping
Sleeping
File size: 608 Bytes
af980d7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | .app {
min-height: 100vh;
display: flex;
flex-direction: column;
background: var(--bg-primary);
}
.main {
flex: 1;
width: 100%;
}
.dashboardWrap {
width: 100%;
}
.footer {
border-top: 1px solid rgba(148, 163, 184, 0.12);
padding: 22px 24px 28px;
text-align: center;
display: flex;
flex-direction: column;
gap: 6px;
background: var(--bg-primary);
}
.footer p {
font-size: 12.5px;
color: var(--text-muted);
}
.footerBrand {
font-weight: 800;
color: var(--accent);
letter-spacing: -0.2px;
}
.footerDisclaimer {
font-style: italic;
font-size: 11.5px !important;
}
|