Skip to content
Snippets Groups Projects
Commit cd6d16f2 authored by Dorian Goepp's avatar Dorian Goepp
Browse files

improve design of latest interaction

parent 554772f0
Branches
No related tags found
No related merge requests found
.latest-interaction .interaction {
display: inline-block;
margin-left: 50px;
margin-bottom: 20px;
word-break: break-all;
}
.latest-interaction hr {
height: 4px;
width: 100%;
margin-top: 5px;
margin: 12.5px 0px 12.5px 0px;
background-color: #edc61b;
border: none;
}
......
......@@ -12,7 +12,7 @@ function LatestInteraction(props) {
intended = props.store.components['interactionTrace'].currentInteraction.intended;
enacted = props.store.components['interactionTrace'].currentInteraction.enacted;
const iteration_id = props.store.components['interactionTrace'].currentInteraction.id;
iteration = <p>Iteration: {iteration_id}</p>;
iteration = [<p key="first"><span className="label">Iteration:</span> {iteration_id}</p>, <hr key="last"/>];
} else {
intended = props.intended;
enacted = props.enacted;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment