File tree Expand file tree Collapse file tree 4 files changed +38
-1
lines changed Expand file tree Collapse file tree 4 files changed +38
-1
lines changed Original file line number Diff line number Diff line change 1
1
import './App.css' ;
2
2
import { LoginSignUp } from './Components/LoginSignUp/LoginSignUp' ;
3
+ import { Navbar } from './Components/Navbar/Navbar' ;
3
4
4
5
function App ( ) {
5
6
return (
6
7
< div >
8
+ < Navbar />
7
9
< LoginSignUp />
8
10
</ div >
9
11
) ;
Original file line number Diff line number Diff line change 2
2
display : flex;
3
3
flex-direction : column;
4
4
margin : auto;
5
- margin-top : 100 px ;
5
+ margin-top : 80 px ;
6
6
width : 600px ;
7
7
background : # fff ;
8
8
padding-bottom : 30px ;
Original file line number Diff line number Diff line change
1
+ * ::before {
2
+ margin : 0 ;
3
+ box-sizing : border-box;
4
+ }
5
+
6
+ .nav {
7
+ display : flex;
8
+ align-items : center;
9
+ height : 12vh ;
10
+ }
11
+
12
+ .logo {
13
+ font-size : 35px ;
14
+ font-weight : 800 ;
15
+ margin : 30px ;
16
+ }
17
+
18
+ .nav span {
19
+ color : # 52CC65 ;
20
+ }
21
+
22
+ .nav a {
23
+ color : # 000 ;
24
+ text-decoration : none;
25
+ }
Original file line number Diff line number Diff line change
1
+ import React from 'react'
2
+ import './Navbar.css'
3
+
4
+ export const Navbar = ( ) => {
5
+ return (
6
+ < nav className = "nav" >
7
+ < a href = "#" className = "logo" > < span > <Peer/</ span > Prep></ a >
8
+ </ nav >
9
+ )
10
+ }
You can’t perform that action at this time.
0 commit comments