0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-02-06 22:38:13 -05:00
penpot/frontend/resources/styles/main/partials/viewer.scss

31 lines
457 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 {
2020-11-18 17:36:14 +01:00
height: calc(100vh - 40px);
2020-04-02 17:08:24 +02:00
grid-row: 1 / span 2;
grid-column: 1 / span 1;
2020-11-18 17:36:14 +01:00
overflow: auto;
2020-04-02 17:08:24 +02:00
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
}