mirror of
https://github.com/penpot/penpot.git
synced 2025-01-27 08:59:17 -05:00
30 lines
437 B
SCSS
30 lines
437 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%;
|
|
}
|
|
}
|
|
.cursor-item {
|
|
height: auto;
|
|
}
|
|
}
|