diff options
author | Mohammad Amoush <muhammedamoush@gmail.com> | 2019-06-04 14:07:20 -0400 |
---|---|---|
committer | Mohammad Amoush <muhammedamoush@gmail.com> | 2019-06-04 14:07:20 -0400 |
commit | c541acbdfc7ec66522409beeebce5f33b340273f (patch) | |
tree | eb46b360e3bca052ddb53f7b9c1072a5599474c7 /src | |
parent | f2c4b71abc29d3416944eee539041ff324632417 (diff) |
move computers
Diffstat (limited to 'src')
-rw-r--r-- | src/client/views/PresentationView.scss | 4 | ||||
-rw-r--r-- | src/client/views/PresentationView.tsx | 6 |
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> ); |