Skip to content

Commit

Permalink
fix: add back list style on Markdown component (#1546)
Browse files Browse the repository at this point in the history
  • Loading branch information
therealemjy authored Oct 5, 2023
1 parent e023acc commit 1ed66fa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/Markdown/Editor/styles-overrides.scss
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,11 @@
--color-prettylights-syntax-sublimelinter-gutter-mark: #484f58;
--color-prettylights-syntax-constant-other-reference-link: #a5d6ff;
// Custom
--md-editor-background-color: #181d27;
--color-fg-default: rgba(255, 255, 255, 1);
--color-fg-muted: rgba(161, 161, 161, 1);
--color-fg-subtle: rgba(149, 151, 161, 1);
--color-canvas-default: rgba(255, 255, 255, 1);
--color-canvas-default: #181d27;
--color-canvas-subtle: rgba(22, 27, 39, 1);
--color-border-default: rgba(49, 50, 60, 1);
--color-border-muted: rgba(49, 50, 60, 1);
Expand Down
4 changes: 4 additions & 0 deletions src/pages/Proposal/Description/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ export const useStyles = () => {
p {
color: ${theme.palette.text.primary};
}
ul {
list-style: initial;
}
`,
content: css`
max-width: ${theme.spacing(200)};
Expand Down

0 comments on commit 1ed66fa

Please sign in to comment.