|
91 | 91 | --sidebar-line-box-left: 12px;
|
92 | 92 | --sidebar-width: 22rem;
|
93 | 93 | --sidebar-line-width: 11.5px;
|
| 94 | + --sidebar-mobile-top-displacement: 3rem; |
94 | 95 | --side-gutter-width: 20rem;
|
95 | 96 | --table-top-bottom-spacing: 1rem;
|
96 | 97 | --table-row-space-between: 1.5rem;
|
@@ -527,39 +528,68 @@ nav {
|
527 | 528 | }
|
528 | 529 |
|
529 | 530 | body:has(#sidebar-v2[style*="block"]) {
|
| 531 | + /* Disable scrolling in main content + hide footer if the sidebar is visible */ |
530 | 532 | overflow-y: hidden;
|
| 533 | + |
| 534 | + .sidebar-layout { |
| 535 | + position: absolute; |
| 536 | + height: 100%; |
| 537 | + } |
| 538 | + |
| 539 | + footer { |
| 540 | + display: none; |
| 541 | + } |
| 542 | + |
| 543 | + .sidebar-layout .sidebar-mobile-toggle { |
| 544 | + display: flex !important; |
| 545 | + align-items: center; |
| 546 | + position: sticky; |
| 547 | + top: 1rem; |
| 548 | + margin-top: 2rem; |
| 549 | + padding: 0.5rem; |
| 550 | + color: white; |
| 551 | + background-color: oklch(var(--color-brand)); |
| 552 | + } |
| 553 | + } |
| 554 | + |
| 555 | + .breadcrumb .sidebar-mobile-toggle { |
| 556 | + display: inline !important; |
| 557 | + } |
| 558 | + |
| 559 | + .sidebar-mobile-toggle { |
| 560 | + background-color: transparent; |
| 561 | + border: none; |
| 562 | + |
| 563 | + .lucide { |
| 564 | + width: 1rem; |
| 565 | + height: 1rem; |
| 566 | + margin-right: 1rem; |
| 567 | + } |
531 | 568 | }
|
532 | 569 |
|
533 | 570 | .main-layout {
|
| 571 | + /* Mobile support for sidebar */ |
534 | 572 | display: flex;
|
535 | 573 | flex-direction: column;
|
536 | 574 | position: relative;
|
537 | 575 |
|
538 | 576 | .sidebar-layout {
|
539 | 577 | min-height: fit-content;
|
540 |
| - position: sticky; |
541 |
| - top: 0; |
542 |
| - padding: 1rem; |
543 |
| - background-color: white; |
| 578 | + background: white; |
| 579 | + z-index: 3; |
544 | 580 | width: calc(100% + 4rem);
|
545 | 581 | margin-left: -2rem;
|
546 |
| - overflow-y: scroll; |
547 | 582 |
|
548 | 583 | &::before {
|
549 | 584 | display: none;
|
550 | 585 | }
|
551 | 586 |
|
552 |
| - .sidebar-mobile-toggle { |
553 |
| - background-color: oklch(var(--color-brand)); |
554 |
| - color: white; |
555 |
| - border: none; |
556 |
| - display: block !important; |
557 |
| - } |
558 |
| - |
559 | 587 | nav {
|
560 | 588 | width: 100%;
|
561 |
| - height: 100vh; |
562 | 589 | display: none;
|
| 590 | + padding: 0; |
| 591 | + top: var(--sidebar-mobile-top-displacement); |
| 592 | + max-height: calc(100vh - var(--sidebar-mobile-top-displacement)); |
563 | 593 |
|
564 | 594 | .sidebar__container {
|
565 | 595 | width: 100%;
|
@@ -981,6 +1011,16 @@ p {
|
981 | 1011 | line-height: 1.5rem;
|
982 | 1012 | }
|
983 | 1013 |
|
| 1014 | +.breadcrumb-layout { |
| 1015 | + position: sticky; |
| 1016 | + top: 0; |
| 1017 | + z-index: 3; |
| 1018 | + background-color: white; |
| 1019 | + width: calc(100% + 4rem); |
| 1020 | + margin-left: -2rem; |
| 1021 | + padding: 1rem 2rem; |
| 1022 | +} |
| 1023 | + |
984 | 1024 | .breadcrumb {
|
985 | 1025 | color: var(--color-foreground);
|
986 | 1026 | text-decoration: none;
|
|
0 commit comments