We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f6ae9e1 + 80c8a5f commit 2e8dbdfCopy full SHA for 2e8dbdf
3 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 }}>
src/index.css
@@ -47,6 +47,7 @@ code {
47
html,
48
body {
49
scroll-behavior: smooth;
50
+ overflow-x: hidden;
51
}
52
53
margin: 0;
0 commit comments