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
|
||||
onChange={handleQuizTitleChange}
|
||||
value={quizTitle}
|
||||
color="primary"
|
||||
placeholder="Titre du quiz"
|
||||
label="Titre du quiz"
|
||||
sx={{ width: '200px', marginTop: '50px' }}
|
||||
|
|
@ -260,7 +259,7 @@ const QuizForm: React.FC = () => {
|
|||
value={selectedFolder}
|
||||
onChange={handleSelectFolder}
|
||||
disabled={!isNewQuiz}
|
||||
style={{ marginBottom: '16px', width: '200px', marginTop: '10px' }}
|
||||
style={{ marginBottom: '16px', width: '200px', marginTop: '50px' }}
|
||||
>
|
||||
<option disabled value="">
|
||||
Choisir un dossier...
|
||||
|
|
|
|||
|
|
@ -381,25 +381,6 @@ const ManageRoom: React.FC = () => {
|
|||
|
||||
return (
|
||||
<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
|
||||
style={{
|
||||
display: 'flex',
|
||||
|
|
@ -418,7 +399,7 @@ const ManageRoom: React.FC = () => {
|
|||
alignItems: 'center',
|
||||
fontSize: '1.5rem',
|
||||
fontWeight: 'bold',
|
||||
marginLeft: '20px',
|
||||
marginLeft: '10px',
|
||||
marginBottom: '0px'
|
||||
}}
|
||||
>
|
||||
|
|
@ -428,6 +409,26 @@ const ManageRoom: React.FC = () => {
|
|||
</h1>
|
||||
</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) */}
|
||||
<div className="">
|
||||
{quizQuestions ? (
|
||||
|
|
|
|||
Loading…
Reference in a new issue