This commit is contained in:
parent
561b45f5b4
commit
07ce90c3e1
2 changed files with 8 additions and 0 deletions
4
src/css/SpeedFlowchartPage.css
Normal file
4
src/css/SpeedFlowchartPage.css
Normal file
|
@ -0,0 +1,4 @@
|
|||
.speed-flowchart-container {
|
||||
display: none;
|
||||
height: calc(100vh - 64px - 16px - 16px);
|
||||
}
|
|
@ -17,6 +17,9 @@ import {
|
|||
} from '@mui/material';
|
||||
import { theme } from '../utils/Theme';
|
||||
import { QRCode } from 'react-qrcode-logo';
|
||||
|
||||
import '../css/SpeedFlowchartPage.css';
|
||||
|
||||
interface SpeedRoundPairDummy extends SpeedRoundPair {
|
||||
dummy: boolean;
|
||||
}
|
||||
|
@ -81,6 +84,7 @@ export default function SpeedFlowchartPage() {
|
|||
container
|
||||
spacing={2}
|
||||
direction={{ xs: 'column-reverse', md: 'row' }}
|
||||
className='speed-flowchart-container'
|
||||
>
|
||||
{flowchartResult?.rounds.map((round, roundKey) => (
|
||||
<Grid
|
||||
|
|
Loading…
Reference in a new issue