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

31 lines
467 B
SCSS
Raw Normal View History

.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;
}
2022-02-02 18:08:47 +01:00
& .typography-font,
& .typography-data {
font-size: $fs16;
2022-02-02 18:08:47 +01:00
color: $color-gray-30;
}
.no-text & {
2022-02-02 18:08:47 +01:00
& .typography-font,
& .typography-data {
display: none;
}
}
}