Skip to content

Commit 3addeb2

Browse files
committed
Refactor timeline components
1 parent 06563ef commit 3addeb2

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

site/src/components/TemplateFiles/TemplateFiles.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ const styles = {
146146
}),
147147

148148
codeWrapper: (theme) => ({
149-
background: theme.palette.background.paperLight,
149+
background: theme.palette.background.paper,
150150
}),
151151

152152
files: (theme) => ({

site/src/components/Timeline/TimelineDateRow.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ export const TimelineDateRow: FC<TimelineDateRow> = ({ date }) => {
1414
return (
1515
<TableRow
1616
css={css`
17-
background: ${theme.palette.background.paper};
18-
1917
&:not(:first-of-type) td {
2018
border-top: 1px solid ${theme.palette.divider};
2119
}
@@ -24,7 +22,7 @@ export const TimelineDateRow: FC<TimelineDateRow> = ({ date }) => {
2422
<TableCell
2523
css={{
2624
padding: `8px 32px !important`,
27-
background: `${theme.palette.background.paperLight} !important`,
25+
background: `${theme.palette.background.paper} !important`,
2826
fontSize: 12,
2927
position: "relative",
3028
color: theme.palette.text.secondary,

site/src/components/WorkspaceBuildLogs/Logs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ const styles = {
120120
},
121121

122122
"&.debug": {
123-
backgroundColor: theme.palette.background.paperLight,
123+
backgroundColor: theme.palette.background.paper,
124124
},
125125

126126
"&.warn": {

0 commit comments

Comments
 (0)