mirror of
https://github.com/mattermost/focalboard.git
synced 2025-04-14 11:28:37 +02:00
30 lines
670 B
SCSS
30 lines
670 B
SCSS
.Label {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
padding: 2px 8px;
|
|
margin: 4px 4px 0 0;
|
|
border-radius: 3px;
|
|
line-height: 20px;
|
|
color: rgba(var(--center-channel-color-rgb), 0.8);
|
|
white-space: nowrap;
|
|
text-transform: uppercase;
|
|
overflow: hidden;
|
|
font-weight: 600;
|
|
font-size: 13px;
|
|
max-width: 100%;
|
|
|
|
&.empty {
|
|
color: rgba(var(--center-channel-color-rgb), 0.4);
|
|
padding: 1px;
|
|
text-transform: none;
|
|
font-weight: normal;
|
|
}
|
|
|
|
input {
|
|
line-height: 20px;
|
|
color: rgba(var(--center-channel-color-rgb), 0.8);
|
|
font-weight: 600;
|
|
font-size: 13px;
|
|
}
|
|
}
|