funky-framadate-front/src/styles/dev-utilities/_helpers.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;
}