Skip to content

Commit

Permalink
[frontend] Fix margin (OpenCTI-Platform#8568)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kedae authored Oct 2, 2024
1 parent 0682000 commit c1def1b
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@ import { QueryRenderer } from '../../../../relay/environment';
import SearchInput from '../../../../components/SearchInput';
import Loader from '../../../../components/Loader';

const styles = () => ({
const styles = (theme) => ({
container: {
margin: 0,
},
gridContainer: {
marginBottom: 20,
marginBottom: theme.spacing(2),
marginTop: theme.spacing(1),
},
});

Expand Down

0 comments on commit c1def1b

Please sign in to comment.