mirror of
https://github.com/penpot/penpot.git
synced 2025-02-08 16:18:11 -05:00
17 lines
273 B
SCSS
17 lines
273 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, #page-canvas, #page-layout {
|
||
|
overflow: visible;
|
||
|
}
|
||
|
}
|