We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11bbfed commit a3948f7Copy full SHA for a3948f7
src/components/Graphs/Graph.module.css
@@ -6,6 +6,8 @@
6
overflow: hidden;
7
background-color: var(--sapBackgroundColor, #fafafa);
8
font-family: var(--sapFontFamily);
9
+ max-width: 1280px;
10
+ margin: 0 auto;
11
}
12
13
.graphColumn {
src/components/Graphs/Graph.tsx
@@ -78,7 +78,6 @@ const Graph: React.FC = () => {
78
return (
79
<div
80
className={styles.graphContainer}
81
- style={{ maxWidth: '1280px', margin: '0 auto' }}
82
data-theme={isDarkTheme ? 'dark' : 'light'}
83
>
84
<div className={styles.graphColumn}>
0 commit comments