Skip to content

Commit

Permalink
UI | fix markdown editor overflow style (#4141)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheGostKasper authored Nov 21, 2023
1 parent 654c70d commit 8e94f1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/components/Policies/Utils/MarkdownEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import styled from "styled-components";
export const MarkdownEditor = styled<any>(ReactMarkdown)`
width: calc(100% - 24px);
padding: ${(props) => props.theme.spacing.small};
overflow: scroll;
overflow: auto;
background: ${(props) => props.theme.colors.neutralGray};
max-height: 300px;
& a {
Expand Down

0 comments on commit 8e94f1b

Please sign in to comment.