git ssb

0+

Rômulo Alves / website



Tree: 05da29162cd94001b87a1366246df608c8a7fa4d

Files: 05da29162cd94001b87a1366246df608c8a7fa4d / 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