funky-framadate-front/src/styles/dev-utilities/_helpers.scss

42 lines
466 B
SCSS
Raw Normal View History

2020-04-21 10:50:26 +02:00
.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;
}
2021-02-09 22:16:02 +01:00
.is-boxed {
border: 1px solid #ddd;
padding: 1em;
margin: 1em 0;
}
2020-04-21 10:50:26 +02:00
.nobold {
font-weight: normal;
}
2020-11-03 15:44:08 +01:00
.hidden {
display: none;
}
2021-02-04 09:23:15 +01:00
.padded {
padding: 1em;
}
2021-05-03 14:54:32 +02:00
.marged {
margin: 1em;
}
2021-11-19 15:25:54 +01:00
.marged-auto {
margin: 0 auto;
}