diff --git a/src/components/RsvpReader.css b/src/components/RsvpReader.css index ec7ccbd..d1f2afc 100644 --- a/src/components/RsvpReader.css +++ b/src/components/RsvpReader.css @@ -10,4 +10,9 @@ .mainItem { composes: item; flex: 2; + padding: 20px; +} + +.controls { + text-align: center; } diff --git a/src/components/RsvpReader.js b/src/components/RsvpReader.js index 0174004..2a4192f 100644 --- a/src/components/RsvpReader.js +++ b/src/components/RsvpReader.js @@ -7,7 +7,7 @@ import { Options } from './Options' import { PlayerControl } from './PlayerControl' import styles from './RsvpReader.css' -import { PipeMarker } from './PivotMarker' +import { PipeMarker, BorderMarker } from './PivotMarker' export const RsvpReader = () => { return ( @@ -16,12 +16,14 @@ export const RsvpReader = () => {
- + - - - - + +
+ + + +
diff --git a/src/components/SegmentControl.js b/src/components/SegmentControl.js index 9b12ea8..80d957f 100644 --- a/src/components/SegmentControl.js +++ b/src/components/SegmentControl.js @@ -19,7 +19,7 @@ import { export const SegmentControl = ({ children }) => { const dispatch = useDispatch() return ( -
+ <> dispatch(decrementSentence())} @@ -41,6 +41,6 @@ export const SegmentControl = ({ children }) => { title="Next Sentence" onClick={() => dispatch(incrementSentence())} /> -
+ ) }