2026-02-14 18:22:42 +01:00
|
|
|
.app {
|
|
|
|
|
display: flex;
|
|
|
|
|
height: 100vh;
|
|
|
|
|
width: 100vw;
|
|
|
|
|
overflow: hidden;
|
2026-02-14 18:20:07 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-14 18:22:42 +01:00
|
|
|
.app__sidebar {
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2026-02-14 18:20:07 +01:00
|
|
|
}
|
2026-02-14 18:22:42 +01:00
|
|
|
|
|
|
|
|
.app__sidebar > * {
|
|
|
|
|
flex: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app__note-list {
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2026-02-14 18:20:07 +01:00
|
|
|
}
|
2026-02-14 18:22:42 +01:00
|
|
|
|
|
|
|
|
.app__note-list > * {
|
|
|
|
|
flex: 1;
|
2026-02-14 18:20:07 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-14 18:22:42 +01:00
|
|
|
.app__editor {
|
|
|
|
|
flex: 1;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2026-02-14 18:20:07 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-14 18:22:42 +01:00
|
|
|
.app__editor > * {
|
|
|
|
|
flex: 1;
|
2026-02-14 18:20:07 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-14 18:22:42 +01:00
|
|
|
.app__inspector {
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2026-02-14 18:20:07 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-14 18:22:42 +01:00
|
|
|
.app__inspector > * {
|
|
|
|
|
flex: 1;
|
2026-02-14 18:20:07 +01:00
|
|
|
}
|