mirror of
https://github.com/penpot/penpot.git
synced 2026-06-01 13:10:21 +00:00
40 lines
751 B
SCSS
40 lines
751 B
SCSS
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
//
|
|
// Copyright (c) KALEIDOS INC
|
|
|
|
@use "refactor/common-refactor.scss" as deprecated;
|
|
|
|
.viewport {
|
|
cursor: none;
|
|
grid-column: 1 / span 2;
|
|
grid-row: 1 / span 2;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
.viewport-controls {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.render-shapes {
|
|
height: 100%;
|
|
position: absolute;
|
|
width: 100%;
|
|
}
|
|
|
|
.viewport-overlays {
|
|
cursor: initial;
|
|
overflow: hidden;
|
|
pointer-events: none;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
z-index: deprecated.$z-index-1;
|
|
}
|