mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-04 05:39:06 +00:00
38 lines
578 B
CSS
38 lines
578 B
CSS
div.automationsLayout {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 1rem;
|
|
}
|
|
|
|
div.automationCard {
|
|
display: grid;
|
|
grid-template-rows: auto 1fr auto;
|
|
}
|
|
|
|
div.pageLayout {
|
|
max-width: 60vw;
|
|
margin: auto;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
div.sidePanel {
|
|
position: fixed;
|
|
height: 100%;
|
|
z-index: 1;
|
|
}
|
|
|
|
@media screen and (max-width: 768px) {
|
|
div.automationsLayout {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
div.pageLayout {
|
|
max-width: 90vw;
|
|
}
|
|
|
|
div.sidePanel {
|
|
position: relative;
|
|
height: 100%;
|
|
}
|
|
}
|