1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-19 20:02:34 +02:00

Split .vr from stacks as a new helper

This commit is contained in:
Mark Otto
2021-06-22 22:22:02 -07:00
committed by Mark Otto
parent 2bc6de1f5e
commit aee169d192
6 changed files with 55 additions and 12 deletions

View File

@@ -6,3 +6,4 @@
@import "helpers/visually-hidden";
@import "helpers/stretched-link";
@import "helpers/text-truncation";
@import "helpers/vr";

View File

@@ -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;
}

8
scss/helpers/_vr.scss Normal file
View File

@@ -0,0 +1,8 @@
.vr {
display: inline-block;
align-self: stretch;
width: 1px;
min-height: 1em;
background-color: currentColor;
opacity: $hr-opacity;
}