1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-23 10:46:13 +02:00
Files
csslayout/styles/patterns/_separator.scss
Phuoc Nguyen 37a6729d08 feat: Chip
2022-09-21 08:55:08 +07:00

34 lines
604 B
SCSS

.separator {
/* Content is centered horizontally */
align-items: center;
display: flex;
/* Used to set the position of text */
position: relative;
/* Demo */
width: 100%;
}
.separator__content {
/* We won't see the separator line */
background: #fff;
/* Displayed at the center of separator */
left: 50%;
position: absolute;
top: 50%;
transform: translate(-50%, -50%);
/* Spacing */
padding: 0 0.25rem;
/* Demo */
width: 60%;
}
.separator__separator {
border-bottom: 1px solid #d1d5db;
height: 1px;
width: 100%;
}