mirror of
https://github.com/penpot/penpot.git
synced 2025-01-26 00:19:07 -05:00
31 lines
447 B
SCSS
31 lines
447 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;
|
|
flex-flow: wrap;
|
|
|
|
|
|
.empty-state {
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
svg {
|
|
transform-origin: center;
|
|
}
|
|
}
|