0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-27 00:49:28 -05:00
penpot/frontend/resources/styles/main/partials/viewer.scss

32 lines
447 B
SCSS
Raw Normal View History

2020-04-02 17:08:24 +02:00
.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;
}
2020-04-02 17:08:24 +02:00
}