mirror of
https://github.com/ets-cfuhrman-pfe/EvalueTonSavoir.git
synced 2025-08-11 21:23:54 -04:00
Compare commits
1 commit
5e6765aa7d
...
338f18c1cd
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
338f18c1cd |
2 changed files with 22 additions and 22 deletions
|
|
@ -248,7 +248,6 @@ const QuizForm: React.FC = () => {
|
||||||
<TextField
|
<TextField
|
||||||
onChange={handleQuizTitleChange}
|
onChange={handleQuizTitleChange}
|
||||||
value={quizTitle}
|
value={quizTitle}
|
||||||
color="primary"
|
|
||||||
placeholder="Titre du quiz"
|
placeholder="Titre du quiz"
|
||||||
label="Titre du quiz"
|
label="Titre du quiz"
|
||||||
sx={{ width: '200px', marginTop: '50px' }}
|
sx={{ width: '200px', marginTop: '50px' }}
|
||||||
|
|
@ -260,7 +259,7 @@ const QuizForm: React.FC = () => {
|
||||||
value={selectedFolder}
|
value={selectedFolder}
|
||||||
onChange={handleSelectFolder}
|
onChange={handleSelectFolder}
|
||||||
disabled={!isNewQuiz}
|
disabled={!isNewQuiz}
|
||||||
style={{ marginBottom: '16px', width: '200px', marginTop: '10px' }}
|
style={{ marginBottom: '16px', width: '200px', marginTop: '50px' }}
|
||||||
>
|
>
|
||||||
<option disabled value="">
|
<option disabled value="">
|
||||||
Choisir un dossier...
|
Choisir un dossier...
|
||||||
|
|
|
||||||
|
|
@ -381,25 +381,6 @@ const ManageRoom: React.FC = () => {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="room">
|
<div className="room">
|
||||||
<div className="roomHeader">
|
|
||||||
<DisconnectButton
|
|
||||||
onReturn={handleReturn}
|
|
||||||
askConfirm
|
|
||||||
message={`Êtes-vous sûr de vouloir quitter?`}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="headerContent"
|
|
||||||
style={{
|
|
||||||
display: 'flex',
|
|
||||||
justifyContent: 'space-between',
|
|
||||||
alignItems: 'center',
|
|
||||||
width: '100%'
|
|
||||||
}}
|
|
||||||
></div>
|
|
||||||
|
|
||||||
<div className="dumb"></div>
|
|
||||||
</div>
|
|
||||||
<div
|
<div
|
||||||
style={{
|
style={{
|
||||||
display: 'flex',
|
display: 'flex',
|
||||||
|
|
@ -418,7 +399,7 @@ const ManageRoom: React.FC = () => {
|
||||||
alignItems: 'center',
|
alignItems: 'center',
|
||||||
fontSize: '1.5rem',
|
fontSize: '1.5rem',
|
||||||
fontWeight: 'bold',
|
fontWeight: 'bold',
|
||||||
marginLeft: '20px',
|
marginLeft: '10px',
|
||||||
marginBottom: '0px'
|
marginBottom: '0px'
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
|
|
@ -428,6 +409,26 @@ const ManageRoom: React.FC = () => {
|
||||||
</h1>
|
</h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div className="roomHeader">
|
||||||
|
<DisconnectButton
|
||||||
|
onReturn={handleReturn}
|
||||||
|
askConfirm
|
||||||
|
message={`Êtes-vous sûr de vouloir quitter?`}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<div
|
||||||
|
className="headerContent"
|
||||||
|
style={{
|
||||||
|
display: 'flex',
|
||||||
|
justifyContent: 'space-between',
|
||||||
|
alignItems: 'center',
|
||||||
|
width: '100%'
|
||||||
|
}}
|
||||||
|
></div>
|
||||||
|
|
||||||
|
<div className="dumb"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
{/* the following breaks the css (if 'room' classes are nested) */}
|
{/* the following breaks the css (if 'room' classes are nested) */}
|
||||||
<div className="">
|
<div className="">
|
||||||
{quizQuestions ? (
|
{quizQuestions ? (
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue