Skip to content

Commit

Permalink
Adaptabilidad - Modificado ancho de los inputs de configuración de pa…
Browse files Browse the repository at this point in the history
…rtida.
  • Loading branch information
UO288559 committed Apr 22, 2024
1 parent 8267e73 commit a06277d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions webapp/src/components/GameConfiguration.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,12 @@ const GameConfiguration = () => {
<TextField
name="questions"
margin="normal"
fullWidth
label="Número de preguntas"
onChange={handleChangeQuestions}
value={valueQuestion}
type="number"
step="1"
sx={{ marginBottom: 4, marginTop: 3, backgroundColor: '#FFFFFF'}}
sx={{ width: '40vh',marginBottom: 4, marginTop: 3, backgroundColor: '#FFFFFF'}}

inputProps={{
inputMode: 'numeric',
Expand All @@ -94,12 +93,12 @@ const GameConfiguration = () => {
name="time"
margin="normal"
fullWidth
label="Tiempo disponible por pregunta"
label="Tiempo por pregunta"
onChange={handleChangeTime}
value={valueTime}
type="number"
step="1"
sx={{ width: '50vh', marginBottom: 2, backgroundColor: '#FFFFFF'}}
sx={{ width: '40vh', marginBottom: 2, backgroundColor: '#FFFFFF'}}
inputProps={{
inputMode: 'numeric',
min: 10,
Expand Down
2 changes: 1 addition & 1 deletion webapp/src/components/fragments/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const Footer = () => {
textAlign: 'center'
}}
>
<Typography variant="body1" fontWeight="bold">&copy; {new Date().getFullYear()} ASW - WIQ_ES5B</Typography>
<Typography variant="body1" fontWeight="bold">&copy; {new Date().getFullYear()} ASW - WIQ_ES2C</Typography>
</Box>
);
}
Expand Down

0 comments on commit a06277d

Please sign in to comment.