mirror of
https://github.com/penpot/penpot.git
synced 2025-01-27 08:59:17 -05:00
26 lines
368 B
SCSS
26 lines
368 B
SCSS
.typography-item {
|
|
padding: 0 1rem;
|
|
margin-right: 1rem;
|
|
cursor: pointer;
|
|
|
|
& > * {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
& .typography-name {
|
|
color: $color-white;
|
|
}
|
|
|
|
& .typography-font,
|
|
& .typography-data {
|
|
font-size: 16px;
|
|
color: $color-gray-30;
|
|
}
|
|
|
|
.no-text & {
|
|
& .typography-font,
|
|
& .typography-data {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|