mirror of
https://github.com/penpot/penpot.git
synced 2025-01-23 23:18:48 -05:00
30 lines
467 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|