2019-10-19 22:49:47 +04:00
|
|
|
import styled from 'styled-components';
|
|
|
|
|
|
|
|
export const FaqContainer = styled.div`
|
|
|
|
padding: 40px 0;
|
2019-11-16 13:51:10 +04:00
|
|
|
|
|
|
|
h4 {
|
|
|
|
margin-top: 30px;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
h4:first-child {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
2019-10-19 22:49:47 +04:00
|
|
|
|
|
|
|
p {
|
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
p:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2019-11-16 13:51:10 +04:00
|
|
|
|
|
|
|
.container {
|
|
|
|
}
|
|
|
|
`;
|