2020-05-29 19:31:19 +05:00
|
|
|
:global(#app) {
|
|
|
|
.button {
|
|
|
|
background: transparent;
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
display: inline-block;
|
|
|
|
max-width: 100%;
|
|
|
|
outline: none;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wrapper {
|
|
|
|
border-radius: 3px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
color: #fff;
|
|
|
|
display: inline-block;
|
|
|
|
font-weight: 400;
|
|
|
|
outline: none;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2020-06-04 21:15:22 +05:00
|
|
|
text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
|
2020-05-29 19:31:19 +05:00
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2021-01-09 18:42:16 +05:00
|
|
|
.wrapperNameless{
|
|
|
|
width: 40px;
|
|
|
|
}
|
|
|
|
|
2020-05-29 19:31:19 +05:00
|
|
|
.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;
|
|
|
|
}
|
|
|
|
}
|