aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMohammad Amoush <muhammedamoush@gmail.com>2019-06-04 14:07:20 -0400
committerMohammad Amoush <muhammedamoush@gmail.com>2019-06-04 14:07:20 -0400
commitc541acbdfc7ec66522409beeebce5f33b340273f (patch)
treeeb46b360e3bca052ddb53f7b9c1072a5599474c7 /src
parentf2c4b71abc29d3416944eee539041ff324632417 (diff)
move computers
Diffstat (limited to 'src')
-rw-r--r--src/client/views/PresentationView.scss4
-rw-r--r--src/client/views/PresentationView.tsx6
2 files changed, 10 insertions, 0 deletions
diff --git a/src/client/views/PresentationView.scss b/src/client/views/PresentationView.scss
index fb4a851c4..97ce80a02 100644
--- a/src/client/views/PresentationView.scss
+++ b/src/client/views/PresentationView.scss
@@ -53,6 +53,10 @@
float: right;
}
+.presentation-interaction {
+ float: left;
+}
+
.presentationView-name {
font-size: 15px;
display: inline-block;
diff --git a/src/client/views/PresentationView.tsx b/src/client/views/PresentationView.tsx
index 9d5798ff1..b6e0f0889 100644
--- a/src/client/views/PresentationView.tsx
+++ b/src/client/views/PresentationView.tsx
@@ -58,6 +58,12 @@ class PresentationViewList extends React.Component<PresListProps> {
{`${index + 1}. ${title}`}
</strong>
<button className="presentation-icon" onClick={e => { this.props.deleteDocument(index); e.stopPropagation(); }}>X</button>
+ <br></br>
+ <button className="presentation-interaction">A</button>
+ <button className="presentation-interaction">B</button>
+ <button className="presentation-interaction">C</button>
+ <button className="presentation-interaction">D</button>
+
</div>
);