Last active
November 28, 2017 21:48
-
-
Save wschenk/f07a31fc0f6e6ed05625d2d2554518e6 to your computer and use it in GitHub Desktop.
create-react-app rmwc example index.js version 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
margin: 0; | |
padding: 0; | |
font-family: sans-serif; | |
} | |
.app { | |
display: flex; | |
flex-direction: row; | |
box-sizing: border-box; | |
} | |
.body { | |
display: flex; | |
flex-direction: column; | |
flex-grow: 1; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
.feed { | |
width: 100%; | |
display: flex; | |
flex-direction: column; | |
align-items: center; | |
} | |
.feed > div { | |
margin-top: 15px; | |
width: 100%; | |
padding: 5px; | |
max-width: 800px; | |
} | |
.button_list { | |
display: flex; | |
align-items: center; | |
justify-content: space-around; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment