git ssb

0+

Rômulo Alves / website



Tree: 90f1fa10f4cf1eadad9cd3539872fd71cc183030

Files: 90f1fa10f4cf1eadad9cd3539872fd71cc183030 / components / container.js

307 bytesRaw
1export default ({ children }) => (
2 <div className="container">
3 { children }
4
5 <style jsx>{`
6 .container {
7 margin: 35px auto;
8 max-width: 600px;
9 }
10
11 @media (max-width: 660px) {
12 .container {
13 max-width: 90%;
14 }
15 }
16 `}</style>
17 </div>
18);

Built with git-ssb-web