Skip to content

Commit

Permalink
Improving secondary color
Browse files Browse the repository at this point in the history
  • Loading branch information
lfnascimento committed Aug 2, 2020
1 parent f7e8382 commit feb6d0a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions ui/src/components/BestAvailableSeatsResult.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ class BestAvailableSeatsResult extends Component {
const { classes } = this.props;
return(
<Card className={classes.root}>
<CardHeader titleTypographyProps={{variant: "h5", color: 'textSecondary'}}
<CardHeader titleTypographyProps={{variant: "h6", color: 'secondary'}}
title="Best Seat(s)"
avatar={<GradeIcon color='primary' />}
action={<GradeIcon color='primary' />}
/>
<CardContent>
{
Expand Down
5 changes: 3 additions & 2 deletions ui/src/components/VenueForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import fetch from 'isomorphic-unfetch';
import BestAvailableSeatsResult from './BestAvailableSeatsResult';
import { object, number , ref } from 'yup';
import { createStyles, makeStyles, Theme } from '@material-ui/core/styles';
import { FormGroup } from '@material-ui/core';
import { FormGroup, Typography } from '@material-ui/core';
import SearchIcon from '@material-ui/icons/Search';

const useStyles = makeStyles((theme: Theme) =>
Expand All @@ -18,7 +18,7 @@ const useStyles = makeStyles((theme: Theme) =>
},
},
button: {
color: '#fff',
color: '#E0E0E0',
marginTop: '5%'
},
seatsFormGroup: {
Expand Down Expand Up @@ -119,6 +119,7 @@ function VenueForm () {
helperText={formik.errors.venue?.layout?.columns}
/>
</FormGroup>
<Typography color="secondary">Please, select seats that should be available</Typography>
<FormGroup className={classes.seatsFormGroup}>
<TextField
id='party_of'
Expand Down
2 changes: 1 addition & 1 deletion ui/src/theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const theme = createMuiTheme({
main: '#F07241',
},
secondary: {
main: '#FFFFFF',
main: '#E0E0E0'
},
error: {
main: red.A400,
Expand Down

0 comments on commit feb6d0a

Please sign in to comment.