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 (
|
||||
<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
|
||||
variant="contained"
|
||||
onClick={handleLaunchClick}
|
||||
|
|
|
|||
|
|
@ -584,7 +584,7 @@ const Dashboard: React.FC = () => {
|
|||
onClick={handleCreateQuiz}
|
||||
sx={{ borderRadius: '8px' }}
|
||||
>
|
||||
Ajouter nouveau quiz
|
||||
Nouveau quiz
|
||||
</Button>
|
||||
|
||||
<Button
|
||||
|
|
@ -741,16 +741,6 @@ const Dashboard: React.FC = () => {
|
|||
<ContentCopy />
|
||||
</IconButton>
|
||||
</Tooltip>
|
||||
|
||||
<Tooltip title="Supprimer quiz" placement="top">
|
||||
<IconButton
|
||||
color="primary"
|
||||
onClick={() => handleRemoveQuiz(quiz)}
|
||||
>
|
||||
<DeleteOutline />
|
||||
</IconButton>
|
||||
</Tooltip>
|
||||
|
||||
<Tooltip title="Partager quiz" placement="top">
|
||||
<IconButton
|
||||
color="primary"
|
||||
|
|
@ -759,6 +749,14 @@ const Dashboard: React.FC = () => {
|
|||
<Share />
|
||||
</IconButton>
|
||||
</Tooltip>
|
||||
<Tooltip title="Supprimer quiz" placement="top">
|
||||
<IconButton
|
||||
color="primary"
|
||||
onClick={() => handleRemoveQuiz(quiz)}
|
||||
>
|
||||
<DeleteOutline />
|
||||
</IconButton>
|
||||
</Tooltip>
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
|
|
|
|||
Loading…
Reference in a new issue