summaryrefslogtreecommitdiff
path: root/src/components/experiments
diff options
context:
space:
mode:
authorGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-09-15 14:36:37 +0200
committerGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-09-23 10:06:03 +0200
commit326b74fc39f63f47c71359276601ea93f7345dc6 (patch)
tree692684391eef98b019c27ff48c6eefba504c4b88 /src/components/experiments
parent653290da64e3d85f422d1f00407b74011999a5fa (diff)
Shrink buttons of experiment and simulation rows
Diffstat (limited to 'src/components/experiments')
-rw-r--r--src/components/experiments/ExperimentRowComponent.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/experiments/ExperimentRowComponent.js b/src/components/experiments/ExperimentRowComponent.js
index b7468ac7..4fb8cbc1 100644
--- a/src/components/experiments/ExperimentRowComponent.js
+++ b/src/components/experiments/ExperimentRowComponent.js
@@ -12,13 +12,13 @@ const ExperimentRowComponent = ({experiment, simulationId, onDelete}) => (
<td className="text-right">
<Link
to={"/simulations/" + simulationId + "/experiments/" + experiment.id}
- className="btn btn-outline-primary mr-1"
+ className="btn btn-outline-primary btn-sm mr-1"
title="Open this experiment"
>
<span className="fa fa-play"/>
</Link>
<div
- className="btn btn-outline-danger"
+ className="btn btn-outline-danger btn-sm"
title="Delete this experiment"
onClick={() => onDelete(experiment.id)}
>