Fix - Page styles not being applied

This commit is contained in:
Kamran Ahmed
2019-10-19 22:49:47 +04:00
parent 9c70c85356
commit 1a2cd75e5d
15 changed files with 109 additions and 118 deletions

View File

@@ -0,0 +1,17 @@
import styled from 'styled-components';
export const FaqContainer = styled.div`
padding: 40px 0;
`;
export const FaqItem = styled.div`
padding: 20px 20px;
p {
color: #333;
}
p:last-child {
margin-bottom: 0;
}
`;