Skip to content

Commit fbaaa14

Browse files
Amir SohelAmir Sohel
authored andcommitted
UI changes
1 parent 790bb65 commit fbaaa14

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

src/App.scss

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ $space_bg:url(https://desktop.github.com/images/star-bg.svg) no-repeat;
3434
position: relative;
3535
background: $space_bg;
3636
background-size: cover;
37+
footer {
38+
bottom: 15px;
39+
}
3740
}
3841

3942
.day-mode{
@@ -64,10 +67,9 @@ $space_bg:url(https://desktop.github.com/images/star-bg.svg) no-repeat;
6467
footer{
6568
background: $dark_bg;
6669
a{
67-
color:#2196f3!important;
70+
color:#5bd0a4!important;
6871
}
6972
}
70-
7173
}
7274

7375

@@ -366,6 +368,7 @@ button {
366368
padding: 10px;
367369
font-size: 13px;
368370
transition: all 0.3s;
371+
color: #fff;
369372

370373
&:hover {
371374
background: #24292f;

src/Components/Views/LandingPage.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import React, { useState } from 'react'
22
import DataProvider from '../../Data-provider/index'
33
import { DebounceInput } from 'react-debounce-input';
4+
import Footer from '../Footer'
45

56
import GithubLink from "./Components/GithubLink"
67
const LandingPage = () => {
@@ -31,7 +32,7 @@ const LandingPage = () => {
3132
style={{
3233
maxWidth: 600,
3334
width: "100%",
34-
minWidth: 300
35+
minWidth: 400
3536
}}
3637

3738
/>
@@ -50,6 +51,7 @@ const LandingPage = () => {
5051
</div>
5152
</div>
5253
</div>
54+
<Footer />
5355
</div>
5456
)
5557
}

0 commit comments

Comments
 (0)