mirror of
https://github.com/ets-cfuhrman-pfe/EvalueTonSavoir.git
synced 2025-08-11 21:23:54 -04:00
Compare commits
2 commits
a5671be906
...
787846a1fb
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
787846a1fb | ||
|
|
25024ebcc3 |
2 changed files with 10 additions and 12 deletions
|
|
@ -21,7 +21,7 @@ const StudentWaitPage: React.FC<Props> = ({ students, launchQuiz, setQuizMode })
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="wait">
|
<div className="wait">
|
||||||
<div className="button" style={{ display: 'flex', justifyContent: 'flex-start' }}>
|
<div className="button" style={{ display: 'flex', justifyContent: 'center', alignItems: 'center', height: '100%' }}>
|
||||||
<Button
|
<Button
|
||||||
variant="contained"
|
variant="contained"
|
||||||
onClick={handleLaunchClick}
|
onClick={handleLaunchClick}
|
||||||
|
|
|
||||||
|
|
@ -584,7 +584,7 @@ const Dashboard: React.FC = () => {
|
||||||
onClick={handleCreateQuiz}
|
onClick={handleCreateQuiz}
|
||||||
sx={{ borderRadius: '8px' }}
|
sx={{ borderRadius: '8px' }}
|
||||||
>
|
>
|
||||||
Ajouter nouveau quiz
|
Nouveau quiz
|
||||||
</Button>
|
</Button>
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
|
|
@ -741,16 +741,6 @@ const Dashboard: React.FC = () => {
|
||||||
<ContentCopy />
|
<ContentCopy />
|
||||||
</IconButton>
|
</IconButton>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
|
|
||||||
<Tooltip title="Supprimer quiz" placement="top">
|
|
||||||
<IconButton
|
|
||||||
color="primary"
|
|
||||||
onClick={() => handleRemoveQuiz(quiz)}
|
|
||||||
>
|
|
||||||
<DeleteOutline />
|
|
||||||
</IconButton>
|
|
||||||
</Tooltip>
|
|
||||||
|
|
||||||
<Tooltip title="Partager quiz" placement="top">
|
<Tooltip title="Partager quiz" placement="top">
|
||||||
<IconButton
|
<IconButton
|
||||||
color="primary"
|
color="primary"
|
||||||
|
|
@ -759,6 +749,14 @@ const Dashboard: React.FC = () => {
|
||||||
<Share />
|
<Share />
|
||||||
</IconButton>
|
</IconButton>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
|
<Tooltip title="Supprimer quiz" placement="top">
|
||||||
|
<IconButton
|
||||||
|
color="primary"
|
||||||
|
onClick={() => handleRemoveQuiz(quiz)}
|
||||||
|
>
|
||||||
|
<DeleteOutline />
|
||||||
|
</IconButton>
|
||||||
|
</Tooltip>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
))}
|
))}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue