mirror of
https://github.com/plankanban/planka.git
synced 2025-08-01 03:25:26 +02:00
48 lines
770 B
SCSS
48 lines
770 B
SCSS
|
:global(#app) {
|
||
|
.button {
|
||
|
background: transparent;
|
||
|
border: none;
|
||
|
cursor: pointer;
|
||
|
display: inline-block;
|
||
|
outline: none;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
.wrapper {
|
||
|
background: #f3f4f6;
|
||
|
border: none;
|
||
|
border-radius: 3px;
|
||
|
color: #7e8ea3;
|
||
|
display: inline-block;
|
||
|
outline: none;
|
||
|
text-align: left;
|
||
|
transition: background 0.3s ease;
|
||
|
vertical-align: top;
|
||
|
}
|
||
|
|
||
|
.wrapperHoverable:hover {
|
||
|
background: #d2d8dc;
|
||
|
color: #17394d;
|
||
|
}
|
||
|
|
||
|
/* Sizes */
|
||
|
|
||
|
.wrapperTiny {
|
||
|
font-size: 12px;
|
||
|
line-height: 20px;
|
||
|
padding: 0 6px;
|
||
|
}
|
||
|
|
||
|
.wrapperSmall {
|
||
|
font-size: 12px;
|
||
|
line-height: 20px;
|
||
|
padding: 2px 6px;
|
||
|
}
|
||
|
|
||
|
.wrapperMedium {
|
||
|
line-height: 20px;
|
||
|
padding: 6px 12px;
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
}
|