mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-02-25 20:13:04 +01:00
26 lines
300 B
JavaScript
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 {
|
|
}
|
|
`;
|