Skip to content

Commit

Permalink
Cleanup css
Browse files Browse the repository at this point in the history
  • Loading branch information
LeunensMichiel committed Mar 22, 2022
1 parent 24c386f commit 8c10742
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
Empty file.
2 changes: 1 addition & 1 deletion components/ui/Dropdown/Dropdown.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@

// Different variants
$variants: default, primary, secondary, success, danger, warning, info,
'transparent', minimal;
'transparent', minimal, minimal-bright, minimal-dark;
@each $variant in $variants {
.dropdown-#{$variant} {
border: 0.125rem solid var(--color-btn-#{$variant}-border);
Expand Down
1 change: 1 addition & 0 deletions lib/context/ui/UIProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ const uiReducer = (state: UIState, action: Action): UIState => {
return {
...state,
modalView: action.view,
displayModal: false,
modalTitle: action.title,
};
}
Expand Down
5 changes: 3 additions & 2 deletions styles/global/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -183,15 +183,16 @@ h4 {
}

h5 {
font-size: var(--font-size);
font-size: var(--font-size-h5);
}

h6 {
font-size: var(--font-size);
font-size: var(--font-size-title);
}

small {
font-size: var(--font-size-small);
line-height: var(--line-height-small);
}

a {
Expand Down

0 comments on commit 8c10742

Please sign in to comment.