mirror of
https://github.com/penpot/penpot.git
synced 2025-02-07 06:48:19 -05:00
22 lines
334 B
SCSS
22 lines
334 B
SCSS
.workspace-canvas {
|
|
box-sizing: border-box;
|
|
height: calc(100vh - 50px);
|
|
margin: 0 240px 0 50px;
|
|
overflow: scroll;
|
|
width: 100%;
|
|
transition: none;
|
|
|
|
&.no-tool-bar {
|
|
margin-right: 0;
|
|
}
|
|
|
|
.viewport {
|
|
&.drawing {
|
|
cursor: cell;
|
|
}
|
|
}
|
|
|
|
.viewport, .page-canvas, .page-layout {
|
|
overflow: visible;
|
|
}
|
|
}
|