Files
developer-roadmap/components/faq-list/style.js
Kamran Ahmed ae9c1c4992 Add about page
2019-11-16 13:51:10 +04:00

26 lines
300 B
JavaScript

import styled from 'styled-components';
export const FaqContainer = styled.div`
padding: 40px 0;
h4 {
margin-top: 30px;
font-weight: 700;
}
h4:first-child {
margin-top: 0;
}
p {
color: #333;
}
p:last-child {
margin-bottom: 0;
}
.container {
}
`;