mirror of
https://github.com/penpot/penpot.git
synced 2025-08-04 12:08:23 +02:00
✨ Handsoff mode basic structure.
This commit is contained in:
parent
aaaf099a3f
commit
04f620ec00
24 changed files with 720 additions and 25 deletions
33
frontend/resources/styles/main/layouts/handoff.scss
Normal file
33
frontend/resources/styles/main/layouts/handoff.scss
Normal file
|
@ -0,0 +1,33 @@
|
|||
.handoff-layout {
|
||||
display: grid;
|
||||
grid-template-rows: 40px auto;
|
||||
grid-template-columns: 1fr;
|
||||
user-select: none;
|
||||
|
||||
&.fullscreen {
|
||||
.viewer-header {
|
||||
opacity: 0;
|
||||
&:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.viewer-content {
|
||||
grid-row: 1 / span 2;
|
||||
}
|
||||
}
|
||||
|
||||
.viewer-header {
|
||||
grid-column: 1 / span 1;
|
||||
grid-row: 1 / span 1;
|
||||
}
|
||||
|
||||
.viewer-content {
|
||||
grid-column: 1 / span 1;
|
||||
grid-row: 2 / span 1;
|
||||
}
|
||||
}
|
||||
|
||||
.handoff-layout .settings-bar.settings-bar-left {
|
||||
left: 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue