Skip to content

Commit a292ffc

Browse files
committed
improve width
1 parent b7e5656 commit a292ffc

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

site/components/App/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export default class App extends Component {
105105
</div>
106106
</div>
107107
<div className={ styles.pluginsWrapper }>
108-
<div className={ styles.container }>
108+
<div className={ styles.wideContainer }>
109109
<ul className={ styles.plugins }>
110110
<li className={ styles.plugin }>Mention</li>
111111
<li className={ styles.plugin }>Linkify</li>

site/components/App/styles.css

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,17 @@
1717

1818
.container {
1919
min-width: 300px;
20-
max-width: 800px;
20+
max-width: 640px;
2121
margin: 0 auto;
2222
padding-left: 15px;
2323
padding-right: 15px;
2424
}
2525

26+
.wideContainer {
27+
composes: container;
28+
max-width: 800px;
29+
}
30+
2631
.containerWrapper {
2732
border-bottom: 1px solid #ddd;
2833
padding-bottom: 3rem;

0 commit comments

Comments
 (0)