File: D:/HostingSpaces/SBogers10/otium.komma.nl/resources/sass/10-Utilities/_utilities.helpers.scss
.u-placeholder-image {
height: 100% !important;
width: 100% !important;
object-fit: cover !important;
}
.u-text-align-center {
text-align: center!important;
}
.u-list {
list-style: none;
margin-left: 0;
}
/**
* Here we print out all our helper classes for our defined $font-weights map
* Output of the classes in the this form:
.u-fw-regular {}
.u-fw-semiBold {}
... etc
*/
@if variable-exists(font-weights) {
@each $name, $size in $font-weights {
.u-fw-#{$name} {
@include font-weight($name);
}
}
}