Skip to content

Commit

Permalink
fix: Small styles fix (#19142)
Browse files Browse the repository at this point in the history
* fix: Small styles fix

* fix: Fixes error with attributes values

* fix: Revert changes to md editor
  • Loading branch information
zeeklop committed Apr 24, 2024
1 parent d1fab26 commit 170a336
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ function Editor({ id, value, height, readOnly, onChange, onFullMode }: Props) {
</TabsRow>
{!showPreview && (
<EditorStyles>
{/* @ts-ignore */}
<SourceCodeEditor id={id ?? 'md-editor'}
mode="markdown"
theme="light"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ const StyledNavbar = styled(Navbar)(({ theme }) => css`
align-items: center;
}
.navbar-nav > li {
> a {
.navbar-nav > li, .navbar-nav > span {
> * {
font-family: ${theme.fonts.family.navigation};
font-size: ${theme.fonts.size.navigation};
Expand All @@ -47,7 +47,7 @@ const StyledNavbar = styled(Navbar)(({ theme }) => css`
}
&.active {
> a {
> * {
${activeIndicatorStyles(theme)}
&:hover,
&:focus {
Expand Down

0 comments on commit 170a336

Please sign in to comment.