We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32b3432 commit ff57510Copy full SHA for ff57510
2 files changed
src/containers/opensourceCharts/OpensourceCharts.css
@@ -19,6 +19,12 @@
19
display: table-cell;
20
} */
21
22
+/* To remove horizontal scroll */
23
+.main-div {
24
+ width: 90%;
25
+ margin: 0 auto;
26
+}
27
+
28
@media (max-width: 1380px) {
29
.os-charts-header {
30
font-size: 35px;
src/containers/opensourceCharts/OpensourceCharts.js
@@ -8,7 +8,7 @@ class OpensourceCharts extends Component {
8
render() {
9
const theme = this.props.theme;
10
return (
11
- <div>
+ <div className="main-div">
12
<div className="os-charts-header-div">
13
<Fade bottom duration={2000} distance="20px">
14
<h1 className="os-charts-header" style={{ color: theme.text }}>
0 commit comments