Implement the columns layout that claude wants :)
No javascript was required. I love the new CSS calc().
Showing
user/config/media.yaml
0 → 100644
user/config/streams.yaml
0 → 100644
1.4 KB
57.9 KB
No javascript was required. I love the new CSS calc().
| .claude-columns { | ||
| display: flex; | ||
Please
register
or
sign in
to reply
|
||
| } | ||
| .claude-column { | ||
| padding: 0.5em 1em; | ||
| max-height: calc(100vh - 4rem - 3rem); | ||
| overflow-y: scroll; | ||
| } | ||
| @media screen and (max-width: 1024px) { | ||
| .claude-columns { | ||
| flex-direction: column; | ||
| } | ||
| .claude-column { | ||
| max-height: initial; | ||
| overflow-y: initial; | ||
| } | ||
| } | ||
| #footer { | ||
| height: 3rem; | ||
| } | ||
| #footer p { | ||
| margin-bottom: 0; | ||
| } | ||
1.4 KB
57.9 KB