Skip to content

Commit 4dbb76d

Browse files
authoredMay 21, 2020
Make footer max width 100vw to fix lighthouse test error (#574)
* restrict footer width to 100vw * make it camel case
1 parent 4fabcb6 commit 4dbb76d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/components/Footer.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const Footer = class extends React.Component {
2020
</div>
2121
<div className="content has-text-centered has-background-black has-text-white-ter">
2222
<div className="container has-background-black has-text-white-ter">
23-
<div className="columns">
23+
<div style={{ maxWidth: '100vw' }} className="columns">
2424
<div className="column is-4">
2525
<section className="menu">
2626
<ul className="menu-list">

0 commit comments

Comments
 (0)
Please sign in to comment.