From aee169d19288d78330be2df0960ea8924353f84f Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 22 Jun 2021 22:22:02 -0700 Subject: Split .vr from stacks as a new helper --- scss/_helpers.scss | 1 + scss/helpers/_stacks.scss | 9 --------- scss/helpers/_vr.scss | 8 ++++++++ 3 files changed, 9 insertions(+), 9 deletions(-) create mode 100644 scss/helpers/_vr.scss (limited to 'scss') diff --git a/scss/_helpers.scss b/scss/_helpers.scss index 13fb1bbb5..4a989f5a5 100644 --- a/scss/_helpers.scss +++ b/scss/_helpers.scss @@ -6,3 +6,4 @@ @import "helpers/visually-hidden"; @import "helpers/stretched-link"; @import "helpers/text-truncation"; +@import "helpers/vr"; diff --git a/scss/helpers/_stacks.scss b/scss/helpers/_stacks.scss index bb0d4d55a..6cd237ae6 100644 --- a/scss/helpers/_stacks.scss +++ b/scss/helpers/_stacks.scss @@ -13,12 +13,3 @@ align-self: stretch; } // scss-docs-end stacks - -.vr { - display: inline-block; - align-self: stretch; - width: 1px; - min-height: 1em; - background-color: currentColor; - opacity: $hr-opacity; -} diff --git a/scss/helpers/_vr.scss b/scss/helpers/_vr.scss new file mode 100644 index 000000000..37f864777 --- /dev/null +++ b/scss/helpers/_vr.scss @@ -0,0 +1,8 @@ +.vr { + display: inline-block; + align-self: stretch; + width: 1px; + min-height: 1em; + background-color: currentColor; + opacity: $hr-opacity; +} -- cgit v1.2.3