mirror of
https://github.com/penpot/penpot.git
synced 2025-01-26 16:39:49 -05:00
86 lines
1.4 KiB
SCSS
86 lines
1.4 KiB
SCSS
$width-settings-bar: 16rem;
|
|
|
|
.handoff-layout {
|
|
display: grid;
|
|
grid-template-rows: 40px auto;
|
|
grid-template-columns: 1fr;
|
|
user-select: none;
|
|
|
|
.viewer-header {
|
|
grid-column: 1 / span 1;
|
|
grid-row: 1 / span 1;
|
|
}
|
|
|
|
.viewer-content {
|
|
grid-column: 1 / span 1;
|
|
grid-row: 2 / span 1;
|
|
}
|
|
}
|
|
|
|
.fullscreen .handoff-layout:not(.force-visible) {
|
|
.viewer-header {
|
|
width: 100%;
|
|
position: fixed;
|
|
top: -48px;
|
|
left: 0;
|
|
transition: top 400ms ease 300ms;
|
|
|
|
&::after {
|
|
content: " ";
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 1rem;
|
|
left: 0;
|
|
top: 48px;
|
|
}
|
|
}
|
|
|
|
& .viewer-header:hover {
|
|
top: 0;
|
|
transition: top 200ms;
|
|
}
|
|
|
|
.viewer-content {
|
|
grid-row: 1 / span 2;
|
|
}
|
|
}
|
|
|
|
.handoff-layout {
|
|
.viewer-preview {
|
|
flex-wrap: nowrap;
|
|
}
|
|
.settings-bar {
|
|
transition: width 0.2s;
|
|
&.expanded {
|
|
width: $width-settings-bar * 3;
|
|
}
|
|
|
|
&.settings-bar-right,
|
|
&.settings-bar-left {
|
|
position: relative;
|
|
left: unset;
|
|
right: unset;
|
|
|
|
.settings-bar-inside {
|
|
padding-top: 0.5rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
.handoff-svg-wrapper {
|
|
flex: 1;
|
|
overflow: hidden;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.handoff-svg-container {
|
|
display: grid;
|
|
width: 100%;
|
|
height: calc(100% - 35px);
|
|
overflow: auto;
|
|
align-items: center;
|
|
justify-content: safe center;
|
|
margin: 0 auto;
|
|
}
|
|
}
|