diff --git a/src/app/app.component.html b/src/app/app.component.html index 46d46eef..1c512303 100644 --- a/src/app/app.component.html +++ b/src/app/app.component.html @@ -47,6 +47,6 @@ -
+
diff --git a/src/app/app.component.scss b/src/app/app.component.scss index 4450c99f..bc6a02ec 100644 --- a/src/app/app.component.scss +++ b/src/app/app.component.scss @@ -20,13 +20,13 @@ .link { - outline: none; - color: inherit; - - &:hover - { - text-decoration: none !important; - } + outline: none; + color: inherit; + + &:hover + { + text-decoration: none !important; + } } .nav-link @@ -107,4 +107,33 @@ input::-webkit-search-cancel-button .dropButton { outline: none; -} \ No newline at end of file +} + +main +{ + max-height: calc(100vh - 68px) !important; + + &:last-child + { + display: block; + overflow-y: auto; + + scrollbar-color: #999 transparent; + + &::-webkit-scrollbar + { + width: 8px; + background: transparent; + } + + &::-webkit-scrollbar-thumb + { + background-color: #999; + + &:host-context(.hoverEnabled) &:hover + { + background-color: rgb(134, 127, 127); + } + } + } +} diff --git a/src/styles.scss b/src/styles.scss index c00107a2..6a283947 100644 --- a/src/styles.scss +++ b/src/styles.scss @@ -107,5 +107,5 @@ mat-icon .cdk-overlay-container { - z-index: 2000 !important; + z-index: 2000 !important; }