Skip to content

Commit

Permalink
Fix button color
Browse files Browse the repository at this point in the history
  • Loading branch information
ldalves committed Dec 13, 2023
1 parent 96ed347 commit 1b7315e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/App/styles/theme/default/button.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import { Button as MantineButton } from '@mantine/core';

export const Button = MantineButton.extend({
defaultProps: { variant: 'filled' },
});
1 change: 1 addition & 0 deletions src/App/styles/theme/default/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export { Badge } from 'App/styles/theme/default/badge';
export { Button } from 'App/styles/theme/default/button';
export { List } from 'App/styles/theme/default/list';
export { Table } from 'App/styles/theme/default/table';

0 comments on commit 1b7315e

Please sign in to comment.