-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
697de8b
commit cf0876f
Showing
14 changed files
with
364 additions
and
79 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
9 changes: 5 additions & 4 deletions
9
stag.io/src/components/NavBar/index.css → stag.io/src/components/NavBarLogo/index.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 5 additions & 8 deletions
13
stag.io/src/components/NavBar/index.jsx → stag.io/src/components/NavBarLogo/index.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,22 @@ | ||
import React from "react"; | ||
import { Link } from 'react-router-dom'; | ||
import logo from "../../images/logo-white.svg"; | ||
import { Button, Navbar } from 'react-bootstrap'; | ||
import "./index.css"; | ||
|
||
const NavBar = () => { | ||
const NavBarLogo = () => { | ||
|
||
|
||
return( | ||
<nav className="NavBar"> | ||
<Navbar className="NavBar"> | ||
<div className="Logo"> | ||
<Link to="/"> | ||
<img src={logo} /> | ||
</Link> | ||
<ul className="LogoName">Stag.io</ul> | ||
</div> | ||
|
||
{/* <button onClick={()=>{console.log("saiu")}}> | ||
sair | ||
</button> */} | ||
</nav > | ||
</Navbar > | ||
); | ||
} | ||
|
||
export default NavBar; | ||
export default NavBarLogo; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
.vaga{ | ||
display: flex; | ||
align-items: center; | ||
max-width: 30em; | ||
height: 3.75em; | ||
margin: 0.6em; | ||
border: 0.1em solid #000000; | ||
background-color: #FFFFFF; | ||
box-sizing: border-box; | ||
border-radius: 6.25em; | ||
justify-content: space-between; | ||
} | ||
.body{ | ||
display: flex; | ||
justify-content: space-between; | ||
width: 100%; | ||
margin: 1.8em; | ||
color:black; | ||
} | ||
|
||
.action{ | ||
display: flex; | ||
width: 5em; | ||
justify-content: space-between; | ||
} |
Oops, something went wrong.