Browse Source
Task/extract page tabs to dedicated component (part 3) (#6908)
Improve styling
pull/6910/head
Thomas Kaul
4 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
6 additions and
1 deletions
-
apps/client/src/styles.scss
-
libs/ui/src/lib/page-tabs/page-tabs.component.scss
|
|
@ -479,6 +479,7 @@ ngx-skeleton-loader { |
|
|
|
|
|
|
|
|
.page { |
|
|
.page { |
|
|
display: flex; |
|
|
display: flex; |
|
|
|
|
|
height: calc(100svh - var(--mat-toolbar-standard-height)); |
|
|
overflow-y: auto; |
|
|
overflow-y: auto; |
|
|
padding-bottom: env(safe-area-inset-bottom); |
|
|
padding-bottom: env(safe-area-inset-bottom); |
|
|
padding-bottom: constant(safe-area-inset-bottom); |
|
|
padding-bottom: constant(safe-area-inset-bottom); |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
:host { |
|
|
:host { |
|
|
display: flex; |
|
|
display: flex; |
|
|
flex-direction: column; |
|
|
flex-direction: column; |
|
|
height: calc(100svh - var(--mat-toolbar-standard-height)); |
|
|
height: 100%; |
|
|
width: 100%; |
|
|
width: 100%; |
|
|
|
|
|
|
|
|
@include mat.tabs-overrides( |
|
|
@include mat.tabs-overrides( |
|
|
@ -23,6 +23,10 @@ |
|
|
|
|
|
|
|
|
.mat-mdc-tab-nav-panel { |
|
|
.mat-mdc-tab-nav-panel { |
|
|
padding: 2rem 0; |
|
|
padding: 2rem 0; |
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: 575.98px) { |
|
|
|
|
|
padding: 1rem 0; |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|