0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-23 23:18:48 -05:00
penpot/frontend/resources/styles/main/partials/text-palette.scss
2023-05-22 16:32:19 +02:00

30 lines
467 B
SCSS

.typography-item {
padding: 0 1rem;
margin-right: 1rem;
cursor: pointer;
& > * {
white-space: nowrap;
}
& .typography-name {
color: $color-white;
max-width: 160px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
& .typography-font,
& .typography-data {
font-size: $fs16;
color: $color-gray-30;
}
.no-text & {
& .typography-font,
& .typography-data {
display: none;
}
}
}