diff --git a/src/components/ui/renderFinishPage.tsx b/src/components/ui/renderFinishPage.tsx index 5b40829..27824bc 100644 --- a/src/components/ui/renderFinishPage.tsx +++ b/src/components/ui/renderFinishPage.tsx @@ -17,6 +17,19 @@ const detailsInnerStyle:CSSProperties = { marginRight: "5px", } +const VideoSpanStyle:CSSProperties = { + display: "flex", + alignItems: "center" +} +const videoSelectStyle:CSSProperties = { + padding: "4px 0", + border: "0", + borderRadius: "14px", + cursor: "pointer", + textAlign: "center", + fontSize: "large" +} + function RenderFinishPage() { const [logPlaying, setLogPlaying] = React.useState(logList[0].name); @@ -71,9 +84,9 @@ function RenderFinishPage() {
- -