mirror of
https://github.com/penpot/penpot.git
synced 2025-02-04 21:38:53 -05:00
21 lines
308 B
SCSS
21 lines
308 B
SCSS
|
.viewer-content {
|
||
|
background-color: black;
|
||
|
|
||
|
display: grid;
|
||
|
grid-template-rows: 232px auto;
|
||
|
grid-template-columns: 1fr;
|
||
|
}
|
||
|
|
||
|
.viewer-preview {
|
||
|
height: 100vh;
|
||
|
|
||
|
grid-row: 1 / span 2;
|
||
|
grid-column: 1 / span 1;
|
||
|
|
||
|
overflow: scroll;
|
||
|
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
}
|