summaryrefslogtreecommitdiffstats
path: root/site/content/docs/5.2/helpers/vertical-rule.md
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-06-24 12:44:40 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-06-24 12:44:49 +0000
commitdb46bfc03f3a22752ef6bd91ae577d893872a216 (patch)
tree89d924513bc95e6bac4dc8e26f0da84caa477b7b /site/content/docs/5.2/helpers/vertical-rule.md
parentReleasing debian version 5.2.3+dfsg-8. (diff)
downloadbootstrap-html-db46bfc03f3a22752ef6bd91ae577d893872a216.tar.xz
bootstrap-html-db46bfc03f3a22752ef6bd91ae577d893872a216.zip
Merging upstream version 5.3.0+dfsg.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'site/content/docs/5.2/helpers/vertical-rule.md')
-rw-r--r--site/content/docs/5.2/helpers/vertical-rule.md45
1 files changed, 0 insertions, 45 deletions
diff --git a/site/content/docs/5.2/helpers/vertical-rule.md b/site/content/docs/5.2/helpers/vertical-rule.md
deleted file mode 100644
index b734f61..0000000
--- a/site/content/docs/5.2/helpers/vertical-rule.md
+++ /dev/null
@@ -1,45 +0,0 @@
----
-layout: docs
-title: Vertical rule
-description: Use the custom vertical rule helper to create vertical dividers like the `<hr>` element.
-group: helpers
-toc: true
-added: "5.1"
----
-
-## How it works
-
-Vertical rules are inspired by the `<hr>` element, allowing you to create vertical dividers in common layouts. They're styled just like `<hr>` elements:
-
-- They're `1px` wide
-- They have `min-height` of `1em`
-- Their color is set via `currentColor` and `opacity`
-
-Customize them with additional styles as needed.
-
-## Example
-
-{{< example >}}
-<div class="vr"></div>
-{{< /example >}}
-
-Vertical rules scale their height in flex layouts:
-
-{{< example >}}
-<div class="d-flex" style="height: 200px;">
- <div class="vr"></div>
-</div>
-{{< /example >}}
-
-## With stacks
-
-They can also be used in [stacks]({{< docsref "/helpers/stacks" >}}):
-
-{{< example >}}
-<div class="hstack gap-3">
- <div class="bg-light border">First item</div>
- <div class="bg-light border ms-auto">Second item</div>
- <div class="vr"></div>
- <div class="bg-light border">Third item</div>
-</div>
-{{< /example >}}