mirror of
https://github.com/Ravinou/borgwarehouse
synced 2026-03-14 14:25:46 +01:00
23 lines
435 B
CSS
23 lines
435 B
CSS
.mainWrapper {
|
|
margin: auto;
|
|
max-width: 1400px;
|
|
height: calc(100vh - 100px);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: flex-start;
|
|
overflow: auto;
|
|
/* to prevent main content under navside on little screen */
|
|
padding-left: 90px;
|
|
/* Disable scrollbar */
|
|
scrollbar-width: none;
|
|
}
|
|
|
|
.login {
|
|
background-color: #111827;
|
|
}
|
|
|
|
@media all and (max-width: 1000px) {
|
|
.mainWrapper {
|
|
padding-left: 0px;
|
|
}
|
|
}
|