0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-24 07:29:08 -05:00
penpot/frontend/resources/styles/main/partials/debug-icons-preview.scss
2023-04-27 12:26:26 +02:00

36 lines
568 B
SCSS

.debug-preview {
display: flex;
flex-direction: column;
overflow: scroll;
height: 100%;
}
.debug-icons-preview {
display: flex;
flex-wrap: wrap;
.icon-item,
.cursor-item {
padding: 10px;
display: flex;
flex-direction: column;
width: 120px;
height: 120px;
margin: 10px;
align-items: center;
svg {
width: 100%;
height: 100%;
min-width: 16px;
min-height: 16px;
fill: black;
fill: none;
color: transparent;
stroke: black;
}
}
.cursor-item {
height: auto;
}
}