Skip to content

Commit

Permalink
[frontend] Fix spacing issues and buttons movement in Victimology view (
Browse files Browse the repository at this point in the history
  • Loading branch information
Gwendoline-FAVRE-FELIX authored Mar 3, 2025
1 parent cf6d81f commit fd9663d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import StixDomainObjectVictimologyMap from './StixDomainObjectVictimologyMap';

const styles = (theme) => ({
container: {
marginTop: 40,
marginTop: theme.spacing(3),
},
bottomNav: {
zIndex: 1,
Expand Down Expand Up @@ -90,7 +90,7 @@ class StixDomainObjectVictimology extends Component {
item
xs={6}
style={{
marginTop: 60,
marginTop: 45,
height: 300,
minHeight: 300,
paddingTop: 0,
Expand All @@ -109,7 +109,7 @@ class StixDomainObjectVictimology extends Component {
item
xs={6}
style={{
marginTop: 60,
marginTop: 45,
height: 300,
minHeight: 300,
paddingTop: 0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -302,15 +302,15 @@ class StixDomainObjectVictimologySectorsComponent extends Component {
return (
<div>
<div className={classes.parameters}>
<div style={{ float: 'left', marginRight: 20, marginTop: -10 }}>
<div style={{ float: 'left', marginRight: 20 }}>
<SearchInput
variant="small"
onSubmit={this.handleSearch.bind(this)}
keyword={searchTerm}
/>
</div>
<div className={classes.views}>
<div style={{ float: 'right', marginTop: -20 }}>
<div style={{ float: 'right', marginTop: -10 }}>
<ToggleButtonGroup
size="small"
color="secondary"
Expand Down

0 comments on commit fd9663d

Please sign in to comment.