🐛 Fix header partialy visible on fullscreen viewer mode

This commit is contained in:
alonso.torres 2021-07-07 15:07:36 +02:00 committed by Andrés Moya
parent 73a08fd119
commit 9b878bd1cc
3 changed files with 22 additions and 2 deletions

View file

@ -21,9 +21,18 @@ $width-settings-bar: 16rem;
.viewer-header {
width: 100%;
position: fixed;
top: -39px;
top: -48px;
left: 0;
transition: top 400ms ease 300ms;
&::after {
content: " ";
position: absolute;
width: 100%;
height: 1rem;
left: 0;
top: 48px;
}
}
& .viewer-header:hover {