Skip to content

Commit 1faf70a

Browse files
committed
landing page changed
1 parent b10e1f9 commit 1faf70a

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

src/app.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import './app.scss';
55
export default function App() {
66
return (
77
<div className="App--Container">
8+
<p className="App--Title">Welcome To React Boilerplate</p>
89
<img src={logo} className="App--Image" />
910
</div>
1011
);

src/app.scss

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,18 @@ body {
1111
flex: 1;
1212
justify-content: center;
1313
align-items: center;
14+
flex-direction: column;
1415
background: $bg-color;
1516
color: $txt-color;
1617
padding: 0;
1718
margin: 0;
1819
color: $primary-color;
19-
}
2020

21-
.App--Image {
22-
height: 200px;
23-
}
21+
.App--Image {
22+
height: 200px;
23+
}
24+
25+
.App--Title {
26+
font-size: 2rem;
27+
}
28+
}

0 commit comments

Comments
 (0)