snaha / diete.design

https://diete.design
MIT License
0 stars 0 forks source link

Horizontal ruler (`<hr/>`) component #229

Closed agazso closed 3 months ago

agazso commented 3 months ago

During building the website I needed a horizontal rule several times and had to implement it for each page. It would be good to add it to the basic components.

Example css:

    hr {
        appearance: none;
        margin-top: var(--double-padding);
        margin-bottom: var(--double-padding);
        border-width: 1px;
        border-style: solid;
        width: 100%;
        color: var(--colors-low);
    }