mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-23 10:46:13 +02:00
34 lines
604 B
SCSS
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%;
|
|
} |