8cf05f1d9f
Ability to edit contact information in conversation sidebar Co-authored-by: Sojan <sojan@pepalo.com>
45 lines
676 B
SCSS
45 lines
676 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;
|
|
}
|
|
}
|
|
}
|
|
|
|
.label {
|
|
font-weight: $font-weight-bold;
|
|
}
|
|
|
|
.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;
|
|
padding: $space-two;
|
|
}
|
|
}
|
|
|
|
.text-truncate {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|