You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
306 B
SCSS
25 lines
306 B
SCSS
.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;
|
|
}
|