From 4bc67b255a07d3fd4ee0a749c6a292d517f6c53c Mon Sep 17 00:00:00 2001 From: Ryan Freeman Date: Wed, 17 Nov 2021 22:26:03 +0000 Subject: [PATCH] Added utilities module --- styles/Home.module.scss | 14 +------------- styles/utilities.module.scss | 11 +++++++++++ 2 files changed, 12 insertions(+), 13 deletions(-) create mode 100644 styles/utilities.module.scss diff --git a/styles/Home.module.scss b/styles/Home.module.scss index 0022163..e2edf33 100644 --- a/styles/Home.module.scss +++ b/styles/Home.module.scss @@ -1,4 +1,5 @@ @import "mixins.module"; +@import "utilities.module"; .container { padding: 0 2rem; @@ -95,16 +96,3 @@ 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; -} diff --git a/styles/utilities.module.scss b/styles/utilities.module.scss new file mode 100644 index 0000000..47a7900 --- /dev/null +++ b/styles/utilities.module.scss @@ -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; +}