<div class="u-hide">this is invisible</div>
<ul class="u-no-bullet">
<li>list without bullets</li>
<li>list without bullets</li>
</ul>
<div class="u-clearfix">with clearfix</div>
<div class="u-hide-text">hidden text</div>
<div class="u-hide">this is invisible</div>
<ul class="u-no-bullet">
<li>list without bullets</li>
<li>list without bullets</li>
</ul>
<div class="u-clearfix">with clearfix</div>
<div class="u-hide-text">hidden text</div>
/* No context defined for this component. */
html {
box-sizing: border-box;
}
*,
*::before,
*::after {
box-sizing: inherit;
}
main {
@include container;
}
// LARGE
// ----------------------------------------
@include mq(large) {
main {
@include container();
}
}
.u-hide {
display: none;
}
.u-no-bullet {
list-style-type: none;
}
.u-clearfix {
@include clearfix;
}
.u-hide-text {
@include hide-text;
}
These are only helper classes for some stylings.
u-hide
for hideu-no-bullet
for remove list-style-typeu-clearfix
for clearfixu-hide-text
for hiding text of an element.