11 lines
204 B
CSS
11 lines
204 B
CSS
/* Site title - homepage header container */
|
|
.header__container::after {
|
|
content: '';
|
|
display: block;
|
|
width: 100%;
|
|
height: 4px;
|
|
background: #e22d30;
|
|
margin: 15px auto 0;
|
|
border-radius: 0;
|
|
}
|