diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-02-06 11:19:59 +0100 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-02-06 11:19:59 +0100 |
commit | 26a0e352c62889e630a84b0333f4148f740fdd7f (patch) | |
tree | 28bee016b1af48733685aa8619ce6f2b5aecc8bf /pages/index.tsx | |
parent | 6ddbbe145f70fd76f8c60a2eb86efdebd6768d06 (diff) |
added fullwidth prop to Vierkant
Diffstat (limited to 'pages/index.tsx')
-rw-r--r-- | pages/index.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pages/index.tsx b/pages/index.tsx index 008bec0..7d128ef 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -159,7 +159,7 @@ export default class HomePage extends Component { </div> </div> </Vierkant> - <Vierkant width="calc(100% - 12px)" style={{ display: this.state.loggedIn ? "block" : "none" }}> + <Vierkant fullwidth style={{ display: this.state.loggedIn ? "block" : "none" }}> <h2>Recente partijen</h2> <table width="100%" style={{ marginTop: "16px", textAlign: "center" }}> <tr> @@ -182,7 +182,7 @@ export default class HomePage extends Component { </tr> </table> </Vierkant> - <Vierkant width="calc(100% - 12px)"> + <Vierkant fullwidth> <h2>Nieuws ofzo</h2> <p style={{ margin: "6px 0" }}>Chess.com heeft heel veel troep waar niemand naar kijkt</p> </Vierkant> |