Files
website-11ty-kogakure.de/src/assets/styles/components/divider.css
2022-08-24 10:29:56 +02:00

14 lines
320 B
CSS

/** Divider */
hr,
.divider {
border-block-end-width: var(--border-width-1);
border-block-start-width: 0;
border-color: var(--color-fg-feather);
border-inline-end-width: 0;
border-inline-start-width: 0;
border-style: solid;
margin-block-end: var(--space-14);
margin-block-start: var(--space-14);
width: 100%;
}