Fix borders on why page
This commit is contained in:
		@@ -228,18 +228,21 @@ const SectionWrap = styled.div<SectionProps>`
 | 
				
			|||||||
    }
 | 
					    }
 | 
				
			||||||
`;
 | 
					`;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const SectionTitle = styled(Heading)`
 | 
					const SectionTitle = styled(Heading)<{ isNoBorder?: boolean }>`
 | 
				
			||||||
    position: relative;
 | 
					    position: relative;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    &:before {
 | 
					    ${props => !props.isNoBorder && `
 | 
				
			||||||
        content: '';
 | 
					        &:before {
 | 
				
			||||||
        width: 100vw;
 | 
					            content: '';
 | 
				
			||||||
        position: absolute;
 | 
					            width: 100vw;
 | 
				
			||||||
        top: -30px;
 | 
					            position: absolute;
 | 
				
			||||||
        left: 0;
 | 
					            top: -53px;
 | 
				
			||||||
        height: 1px;
 | 
					            left: 0;
 | 
				
			||||||
        background-color: #3d3d3d;
 | 
					            height: 1px;
 | 
				
			||||||
    }
 | 
					            background-color: #3d3d3d;
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					    `}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    @media (max-width: 768px) {
 | 
					    @media (max-width: 768px) {
 | 
				
			||||||
        &:before {
 | 
					        &:before {
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user