Skip to content

Commit e3279d3

Browse files
committed
aligned empty snapshot button
1 parent 4b4a020 commit e3279d3

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

src/app/containers/ActionContainer.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class ActionContainer extends Component {
3232
}
3333
return (
3434
<div className="action-container">
35-
<div className="action-component">
35+
<div className="action-component exclude">
3636
<div className="empty-button" onClick={emptySnapshot}>
3737
emptySnapshot
3838
</div>

src/app/styles/components/_actionComponent.scss

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,15 @@
1616
background-color: $light-grey-one;
1717
}
1818

19-
.action-component button {
20-
position: relative;
19+
.action-component .empty-button {
20+
// grid-column: 1 / span 4;
2121
}
2222

2323
.action-component:hover .jump-button {
2424
visibility: visible;
2525
}
26+
27+
.action-component.exclude {
28+
display: flex;
29+
justify-content: center;
30+
}

0 commit comments

Comments
 (0)