Horizontal Rule (Default / Solid)

Content above the line


Content below the line

scss/canvas/component/_hr.scss

CSS Variables

CSS Variable Default
--hr-height 1px
--hr-width 100%
--hr-color var(--color-grey-light)
scss/canvas/component/_hr.scss

Customization Example

Override height and color:

---
style: |
  :root {
    --hr-height: 3px;
    --hr-color: #3b91c4;
  }
---

Content above


Content below (thicker blue line)

scss/canvas/component/_hr.scss