Skip to content

Commit

Permalink
removing button of sidebar
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriela-miranda-leite committed Dec 21, 2021
1 parent c21b05f commit 91ce0ef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 18 deletions.
5 changes: 0 additions & 5 deletions src/components/sections/banner/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import {AnimationRocket} from '../../animationRocket';
import {ButtonGitHub} from '../../buttonGitHub';
import {ButtonNavbar} from '../../buttonNavbar';
import {Logo} from '../../logo';
import {Navbar} from '../../navbar';

Expand All @@ -13,10 +12,6 @@ export const Banner = () => {
<Navbar />
</S.NavbarWrapper>

<S.ButtonNavbarWrapper>
<ButtonNavbar />
</S.ButtonNavbarWrapper>

<S.Content>
<S.InfoContainer>
<Logo />
Expand Down
16 changes: 3 additions & 13 deletions src/components/sections/banner/styles.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import styled from 'styled-components';

export const Container = styled.section`
export const Container = styled.section.attrs({
id: 'banner',
})`
height: 100vh;
display: flex;
flex-direction: column;
Expand All @@ -23,18 +25,6 @@ export const NavbarWrapper = styled.div`
}
`;

export const ButtonNavbarWrapper = styled.div`
display: flex;
width: 100%;
height: 10%;
justify-content: flex-end;
@media (min-width: 1070px) {
display: none;
height: 0%;
}
`;

export const Content = styled.div`
display: flex;
flex-direction: column;
Expand Down

0 comments on commit 91ce0ef

Please sign in to comment.