Skip to content

Commit a3948f7

Browse files
committed
fix: suggestions
1 parent 11bbfed commit a3948f7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/components/Graphs/Graph.module.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
overflow: hidden;
77
background-color: var(--sapBackgroundColor, #fafafa);
88
font-family: var(--sapFontFamily);
9+
max-width: 1280px;
10+
margin: 0 auto;
911
}
1012

1113
.graphColumn {

src/components/Graphs/Graph.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ const Graph: React.FC = () => {
7878
return (
7979
<div
8080
className={styles.graphContainer}
81-
style={{ maxWidth: '1280px', margin: '0 auto' }}
8281
data-theme={isDarkTheme ? 'dark' : 'light'}
8382
>
8483
<div className={styles.graphColumn}>

0 commit comments

Comments
 (0)