Files
fizzy/app/assets/stylesheets/pagination.css
T
Jorge Manrubia 0278fe6ae4 Revert "Mobile app / Scoped stylesheets" (#1698)
This reverts commit 39c1906e67.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-16 17:20:18 +01:00

34 lines
591 B
CSS

@layer components {
.pagination-link {
display: block;
flex: 1;
min-block-size: 1.5rem;
pointer-events: none;
text-decoration: none;
&.pagination-link--active-when-observed {
block-size: 0;
inline-size: 0;
overflow: hidden;
visibility: hidden;
turbo-frame:has(&):has(~ turbo-frame) & {
display: none;
}
}
&[aria-busy="true"] {
.spinner {
display: block;
}
}
}
.day-timeline-pagination-link {
block-size: 1px;
display: block;
inline-size: 1px;
overflow: clip;
}
}