mirror of
https://github.com/zadam/trilium.git
synced 2026-01-01 04:04:25 +01:00
git-subtree-dir: packages/share-theme git-subtree-mainline: d8f0709bce891a8ebc0676bb3b6b5314bf78a129 git-subtree-split: 2cdd2a0a543f0bced8284ca55bc94efadbc7c91f
33 lines
585 B
CSS
33 lines
585 B
CSS
#split-pane {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 50px;
|
|
}
|
|
|
|
#left-pane {
|
|
display: flex;
|
|
width: calc((100vw - 900px) / 2);
|
|
min-width: fit-content;
|
|
height: calc(100vh);
|
|
background: var(--background-secondary);
|
|
border-right: 5px solid var(--background-highlight);
|
|
justify-content: flex-end;
|
|
position: sticky;
|
|
top: 0;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
#right-pane {
|
|
display: flex;
|
|
margin: 0 auto;
|
|
gap: 40px;
|
|
flex: 1;
|
|
padding-bottom: 500px;
|
|
padding-right: 50px;
|
|
}
|
|
|
|
#main {
|
|
order: 2;
|
|
max-width: 900px;
|
|
flex: 1;
|
|
} |