Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1664 ui make homepage mobile friendly #1692

Merged
Merged
Changes from 12 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 7 additions & 1 deletion ui/src/components/Homepage/index.jsx
Expand Up @@ -19,6 +19,7 @@ import SignInDialog from '../SignInDialog';
fontFamily: 'Roboto500',
[theme.breakpoints.down('sm')]: {
marginBottom: theme.spacing.double,
fontSize: 40,
},
},
actions: {
Expand All @@ -34,6 +35,11 @@ import SignInDialog from '../SignInDialog';
fill: theme.palette.common.white,
marginRight: theme.spacing.unit,
},
text: {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Rename class to ciDescription.

[theme.breakpoints.down('sm')]: {
fontSize: 20,
},
},
}))
export default class HomePage extends Component {
state = {
Expand Down Expand Up @@ -64,7 +70,7 @@ export default class HomePage extends Component {
{window.env.APPLICATION_NAME}
</Typography>
</Hidden>
<Typography variant="h5">
<Typography variant="h5" className={classes.text}>
A task execution framework that supports Mozilla&apos;s continuous
integration and release processes.
</Typography>
Expand Down