X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fapp.component.scss;h=9eca313203eb4ee8c15a012eacd57c59a00f4b52;hb=30eac84e71eeb99e70861e5ab75c60fd39dac03c;hp=10af9debe042f5d88e2f97f3c12bedf6b6cf4c0b;hpb=0727cab0dfd3d53e5e9c88bfbda6bc0e090d4f12;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/app.component.scss b/client/src/app/app.component.scss index 10af9debe..9eca31320 100644 --- a/client/src/app/app.component.scss +++ b/client/src/app/app.component.scss @@ -1,3 +1,6 @@ +@import '_variables'; +@import '_mixins'; + .main-row { min-height: calc(100vh - #{$header-height} - #{$footer-height} - #{$footer-margin}); } @@ -6,17 +9,6 @@ margin-top: $header-height; } -.title-menu-left { - position: fixed; - height: calc(100vh - #{$header-height}); - padding: 0; - width: $menu-width; - - .title-menu-left-block.menu { - height: 100%; - } -} - .header { height: $header-height; position: fixed; @@ -28,29 +20,37 @@ display: flex; .top-left-block { - width: $menu-width; z-index: 1001; height: $header-height; display: flex; align-items: center; + flex: 1; + min-width: 0; .icon { - @include icon(22px); + @include icon(24px); &.icon-menu { background-image: url('../assets/images/header/menu.svg'); - margin: 0 18px 0 24px; + margin: 0 18px 0 20px; } } #peertube-title { + @include disable-default-a-behaviour; font-size: 20px; font-weight: $font-bold; color: inherit !important; display: flex; align-items: center; + overflow: hidden; - @include disable-default-a-behaviour; + .instance-name { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + width: 100%; + } .icon.icon-logo { display: inline-block; @@ -61,18 +61,24 @@ } @media screen and (max-width: 500px) { + width: 70px; + #peertube-title { display: none; } } + + @media screen and (max-width: 350px) { + flex: auto; + } } .header-right { height: $header-height; display: flex; align-items: center; - flex-grow: 1; justify-content: flex-end; + white-space: nowrap; } } @@ -84,3 +90,8 @@ footer { margin-top: $footer-margin; height: $footer-height; } + +simple-notifications { + position: relative; + z-index: 1500; +}