0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-23 23:18:48 -05:00

🐛 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

@ -29,6 +29,7 @@
- Fix negative values in blur [Taiga #1815](https://tree.taiga.io/project/penpot/issue/1815)
- Fix problem when editing color in group [Taiga #1816](https://tree.taiga.io/project/penpot/issue/1816)
- Fix resize/rotate with mouse buttons different than left [#1060](https://github.com/penpot/penpot/issues/1060)
- Fix header partialy visible on fullscreen viewer mode [Taiga #1875](https://tree.taiga.io/project/penpot/issue/1875)
### :arrow_up: Deps updates
### :boom: Breaking changes

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 {

View file

@ -19,9 +19,19 @@
& .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 {