Chatwoot/app/javascript/dashboard/assets/scss/_foundation-custom.scss
Sivin Varghese 6469acc750
Enhancement: Adds story for label component (#2222)
* Enhancement: Adds story for label component
2021-05-05 16:46:23 +05:30

46 lines
717 B
SCSS

.button {
font-family: $body-font-family;
font-weight: $font-weight-medium;
&.round {
border-radius: 1000px;
}
&.grey-btn {
color: $color-gray;
&:hover {
color: $color-light-gray;
}
}
}
.tooltip {
border-radius: $space-smaller;
font-size: $font-size-mini;
max-width: 15rem;
padding: $space-smaller $space-small;
z-index: 9999;
}
code {
border: 0;
font-family: 'Monaco', Verdana;
font-size: $font-size-mini;
&.hljs {
background: $color-background;
border-radius: var(--border-radius-large);
padding: $space-two;
}
}
.text-truncate {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.cursor-pointer {
cursor: pointer;
}