Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- @use '../atoms/variables' as *;
- @use '../atoms/mixins' as *;
-
- // ─── Page Wrapper ─────────────────────────────────────────────────────────────
- .tt-page {
- @include page-shell;
- }
-
- // ─── Header Section ──────────────────────────────────────────────────────────
- .tt-header {
- @include section-header;
- padding: $space-4 $space-6;
- min-height: $header-height;
- position: sticky;
- top: 0;
- z-index: 100;
- }
-
- .tt-header__meta {
- flex-shrink: 0;
- }
-
- .tt-header__date {
- font-size: $font-size-lg;
- font-weight: $font-weight-bold;
- color: var(--header-text);
- line-height: 1.2;
- }
-
- .tt-header__kw {
- font-size: $font-size-sm;
- font-weight: $font-weight-bold;
- color: var(--header-text-muted);
- line-height: 1.3;
- }
-
- // ─── Main Content ─────────────────────────────────────────────────────────────
- .tt-content {
- flex: 1;
- max-width: $content-max-width;
- width: 100%;
- margin: 0 auto;
- padding: $space-6;
- display: flex;
- flex-direction: column;
- gap: $space-4;
- }
|