You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
306 B
24 lines
306 B
.text-ellipsis { |
|
text-overflow: ellipsis; |
|
max-width: 100%; |
|
word-break: break-all; |
|
overflow: hidden; |
|
display: inline-block; |
|
} |
|
|
|
.clickable { |
|
cursor: pointer; |
|
} |
|
|
|
.boxed-shadow { |
|
background: $white; |
|
box-shadow: $dark-lavender 0 0 10px; |
|
} |
|
|
|
.nobold { |
|
font-weight: normal; |
|
} |
|
|
|
.hidden { |
|
display: none; |
|
}
|
|
|