Files
fizzy/app/assets/stylesheets/layout.css
T
Adrien Maston 268c6431af Merge branch 'main' into mobile/prepare-webviews-2
* main: (73 commits)
  Fix that caching should be disabled in dev by default. References 3cf841d463.
  Revert "Add CJK (Chinese, Japanese, Korean) search support"
  Account for new button sizes on mobile
  Bump filter z-index when filters are open
  Use a dedicated resource for showing cards in draft mode
  Refactor popup.css styles for focus state
  Add Segoe UI Variable Fizzy font face configuration comments
  Update @layer name to `base` in font-face definition for "Segoe UI Variable Fizzy"
  Repair scope for card styles within the columns view
  Add missing list to cards page
  Account for simpler public views
  Fix public layout
  Pull board-tools outside of the list for mobile
  saas: move log_level setting into an environment variable
  Restore log level configurability in production environment
  Remove engagements
  Go back to board after clearing filters
  Ensure filters sit on top of cards
  Fix public boards
  Fix card grid layout
  ...
2026-01-09 10:58:21 +01:00

41 lines
773 B
CSS

@layer base {
body {
display: grid;
grid-template-rows: auto 1fr auto 9em;
&.public {
grid-template-rows: auto 1fr auto;
}
}
/* Required for the card column page on mobile, but not needed otherwise */
:where(#global-container) {
display: contents;
}
:where(#header) {
position: relative;
z-index: var(--z-nav);
}
:where(#main) {
inline-size: 100dvw;
margin-inline: auto;
max-inline-size: 100dvw;
padding-inline:
calc(var(--main-padding) + var(--custom-safe-inset-left))
calc(var(--main-padding) + var(--custom-safe-inset-right));
text-align: center;
}
:where(#footer) {
max-inline-size: 100dvw;
}
:is(#header, #footer) {
@media print {
display: none;
}
}
}