Skip to content

Commit 44d98c3

Browse files
committed
made emptySnapshot button width 100%
1 parent fec8160 commit 44d98c3

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/app/containers/ActionContainer.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class ActionContainer extends Component {
2828
}
2929
return (
3030
<div className="action-container">
31-
<button onClick = {this.props.emptySnapshot}>emptySnapshot</button>
31+
<button className="emptySnapshot" onClick = {this.props.emptySnapshot}>emptySnapshot</button>
3232
<div >{actionsArr}</div>
3333
</div>
3434
);

src/app/styles/styles.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@
2222
overflow: scroll;
2323
}
2424

25+
.emptySnapshot{
26+
width: 100%;
27+
}
28+
2529
.state-container {
2630
font-size: 15px;
2731
flex: 7 auto;

0 commit comments

Comments
 (0)