Skip to content
This repository was archived by the owner on Mar 18, 2021. It is now read-only.

Commit 47de8cd

Browse files
committed
delete buttons are now not stacked on XS screens
1 parent ce6e675 commit 47de8cd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

js/attributes.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -123,14 +123,14 @@ class PlottedAttributes extends React.Component {
123123

124124
<Panel footer={
125125
<Row>
126-
<Col lg={6}>
126+
<Col xs={6} lg={6}>
127127
<Button style={{ width: "100%" }} bsStyle="danger" onClick={this.onRemove.bind(this)}
128128
disabled={this.state.selected.length == 0}
129129
title="Remove the currently selected attribute(s) from the plot">
130130
Remove Selected
131131
</Button>
132132
</Col>
133-
<Col lg={6}>
133+
<Col xs={6} lg={6}>
134134
<Button style={{ width: "100%" }} bsStyle="danger" onClick={this.onRemoveAll.bind(this)}
135135
disabled={this.props.attributes.length == 0}
136136
title="Remove all attribute(s) from the plot">

0 commit comments

Comments
 (0)