Skip to content

Commit

Permalink
Merge pull request #134 from Arquisoft/Marina
Browse files Browse the repository at this point in the history
Adaptabilidad - Modificado ancho de los inputs de configuración de partida.
  • Loading branch information
UO288559 authored Apr 22, 2024
2 parents 70a66c6 + 1d37540 commit 67a2587
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions webapp/src/components/GameConfiguration.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,12 @@ const GameConfiguration = () => {
<TextField
name="questions"
margin="normal"
fullWidth
label={t("textoNumPreg")}
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 @@ -104,7 +103,7 @@ const GameConfiguration = () => {
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 67a2587

Please sign in to comment.