blob: da5a007a7fca3a93ce1b7114669754799324fb39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
.header-content-separator {
position: relative;
margin: 40px auto;
width: 4px;
height: 4px;
border-radius: 50%;
background: var(--grey-ccc);
&:before {
position: absolute;
left: -8px;
width: 4px;
height: 4px;
border-radius: 50%;
background: var(--grey-ccc);
content: "";
}
&:after {
position: absolute;
left: 8px;
width: 4px;
height: 4px;
border-radius: 50%;
background: var(--grey-ccc);
content: "";
}
}
|