Skip to content

Commit

Permalink
[ui] Fix light-theme blue gradient (#21336)
Browse files Browse the repository at this point in the history
## Summary & Motivation

Fix a CSS syntax error on the light-theme blue gradient.

## How I Tested These Changes

View new catalog page in light theme, verify that the gradient renders correctly.
  • Loading branch information
hellendag authored Apr 22, 2024
1 parent 3df1410 commit be1b9a1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,6 @@ export const lightThemeColors = css`
--color-data-viz-yellow-alt: var(--color-dataviz-yellow300);
--color-blue-gradient: linear-gradient(
var(--color-core-gray10),
var(--color-translucent-blue10) ; 100%
var(--color-translucent-blue10) 100%
);
`;

1 comment on commit be1b9a1

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deploy preview for dagit-storybook ready!

✅ Preview
https://dagit-storybook-h8xx8izj3-elementl.vercel.app

Built with commit be1b9a1.
This pull request is being automatically deployed with vercel-action

Please sign in to comment.