visually-hidden devient un mixin

This commit is contained in:
Raphael 2019-08-14 12:30:26 +02:00
parent 65711b271f
commit 86ddd7398c
3 changed files with 22 additions and 14 deletions

View file

@ -1,3 +1,15 @@
// Visually-hidden mixin
@mixin visually-hidden {
position: absolute !important;
border: 0 !important;
height: 1px !important;
width: 1px !important;
padding: 0 !important;
overflow: hidden !important;
clip: rect(0, 0, 0, 0) !important;
}
// font-size Mixin
// compiles to font-size mobile + font-size desktop on small-plus devices
// ex. h2 { @include font-size(h2);}