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

fix[Modified] UI Text Style Changed for Professional Look #93

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/containers/Drawer/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ function ResponsiveDrawer(props) {
<AppBar position="fixed" className={classes.appBar}>
<Toolbar>
<IconButton
color="inherit"
color="primary"
aria-label="open drawer"
edge="start"
onClick={handleDrawerToggle}
Expand All @@ -135,7 +135,9 @@ function ResponsiveDrawer(props) {
<MenuIcon />
</IconButton>
<Link to="/">
<Typography variant="h6" noWrap>
<Typography variant="h4" noWrap
style={{ fontStyle: "bold",'font-family': "Aerial"}}
>
React Native Elements
</Typography>
</Link>
Expand Down
2 changes: 1 addition & 1 deletion src/containers/Navigation/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ export default function App() {
})}
<Route exact path="/explore">
<Helmet>
<title>Explore | Playground <span role="img" aria-label="playground">🚀</span> - React Native Elements</title>
<title>Explore Now| Playground <span role="img" aria-label="playground">🚀</span> - React Native Elements</title>
</Helmet>
<ExplorePage />
</Route>
Expand Down
2 changes: 1 addition & 1 deletion src/index.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
font-family: "Palatino",-apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
-webkit-font-smoothing: antialiased;
Expand Down
17 changes: 10 additions & 7 deletions src/pages/home/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,19 @@ function HomePage() {
<Grid container spacing={5} justify="center" alignItems="center">
<Grid item md={6} sm={12}>
<Typography
variant="h2"
variant="h1"
style={{
fontSize: "calc(2rem + 6 * ((100vw - 320px) / 680))",
fontSize: "calc(4rem + 6 * ((100vw - 320px) / 680))",
fontStyle : "Bold",
'font-family': "Palatino"
}}
>
Exploring possibilities
Exploring
Possibilities
</Typography>
<Typography
variant="h6"
style={{ fontWeight: "200", fontStyle: "italic" }}
variant="h4"
style={{ fontWeight: "25", fontStyle: "bold",'font-family': "Palatino"}}
>
with React Native Elements
</Typography>
Expand All @@ -32,8 +35,8 @@ function HomePage() {
</Grid>
<div style={{ width: "100%", textAlign: "center", marginBottom: "2rem" }}>
<Link to="/explore">
<Button variant="outlined" color="secondary">
<Typography variant="h6">Explore Now <span role="img" aria-label="explore">🌇</span></Typography>
<Button variant="outlined" color="Primary">
<Typography variant="h6"> Explore Now</Typography>
</Button>
</Link>
</div>
Expand Down