Added utilities module

This commit is contained in:
Ryan Freeman 2021-11-17 22:26:03 +00:00
parent 122647205f
commit 4bc67b255a
2 changed files with 12 additions and 13 deletions

View File

@ -1,4 +1,5 @@
@import "mixins.module"; @import "mixins.module";
@import "utilities.module";
.container { .container {
padding: 0 2rem; padding: 0 2rem;
@ -95,16 +96,3 @@
line-height: 1.5; line-height: 1.5;
} }
} }
.srOnly {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border-width: 0;
}

View File

@ -0,0 +1,11 @@
.srOnly {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border-width: 0;
}