1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-08-03 04:25:27 +02:00
planka/client/src/components/Label/Label.module.scss

55 lines
881 B
SCSS
Raw Normal View History

:global(#app) {
.button {
background: transparent;
border: none;
cursor: pointer;
display: inline-block;
max-width: 100%;
outline: none;
padding: 0;
}
.wrapper {
border-radius: 3px;
color: #fff;
2024-08-12 23:17:17 +02:00
display: inline-block;
font-weight: 400;
overflow: hidden;
text-overflow: ellipsis;
text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
2024-08-12 23:17:17 +02:00
vertical-align: top;
white-space: nowrap;
}
2024-08-12 23:17:17 +02:00
.wrapperNameless {
width: 40px;
}
.wrapperHoverable:hover {
opacity: 0.75;
}
/* Sizes */
.wrapperTiny {
font-size: 12px;
line-height: 20px;
max-width: 176px;
padding: 0 6px;
}
.wrapperSmall {
font-size: 12px;
line-height: 20px;
max-width: 176px;
padding: 2px 8px;
}
.wrapperMedium {
font-size: 14px;
line-height: 32px;
max-width: 230px;
padding: 0 12px;
}
}