2026-02-16 16:56:44 +01:00
|
|
|
/* App layout - minimal CSS, most styling via Tailwind */
|
2026-02-17 11:03:23 +01:00
|
|
|
.app-shell {
|
2026-02-14 18:22:42 +01:00
|
|
|
display: flex;
|
2026-02-17 11:03:23 +01:00
|
|
|
flex-direction: column;
|
2026-02-14 18:22:42 +01:00
|
|
|
height: 100vh;
|
|
|
|
|
width: 100vw;
|
|
|
|
|
overflow: hidden;
|
2026-02-14 18:20:07 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-17 11:03:23 +01:00
|
|
|
.app {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex: 1;
|
|
|
|
|
min-height: 0;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
}
|