git ssb

0+

Rômulo Alves / website



Tree: b17cf440c9dbf4e1f387500422eac5a7b137232e

Files: b17cf440c9dbf4e1f387500422eac5a7b137232e / 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