Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/componentes/Carrinho/Carrinho.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ const SideBar = styled.div`
height: 400px;
background-color: #000000aa;
border-radius: 8px;
@media (max-width: 1200px) {
right: 0px;
@media (max-width: 1440px) {
right: 5px
} ;
`;

Expand Down Expand Up @@ -63,7 +63,7 @@ class Carrinho extends React.Component {
<ItenSidebar key={this.props.id}>
<p>{produto.quantidade}x</p>
<p>{produto.nome}</p>
<p>{produto.preco}</p>
<p>R${produto.preco},00</p>
<BotaoRemover
onClick={() => this.props.removerDoCarrinho(produto.id)}
></BotaoRemover>
Expand Down
2 changes: 1 addition & 1 deletion src/componentes/Footer/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class Footer extends React.Component {
<img src={Face} />
<img src={Twitter} />
</RedesSociais>
<h5>© 2022 - NossaLoja Co.® Inc. Todos os direitos reservados.</h5>
<h5>© 2022 - LostinSpace Co.® Inc. Todos os direitos reservados.</h5>
</ContainerFooter>
);
}
Expand Down
5 changes: 3 additions & 2 deletions src/componentes/Header/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,17 @@ const Container = styled.div`
color: #f2f2f2;
padding: 10px;
display: flex;
justify-content: space-around;
justify-content: space-between;
align-items: center;
line-height: 1.3;
box-sizing: border-box;
`;

const ImagemLogo = styled.img`
width: 10%;
width: 30%;
@media screen and (min-device-width : 320px) and (max-device-width : 480px) {
width: 40%;
margin-right: 150px;
}
`;

Expand Down
4 changes: 2 additions & 2 deletions src/components/cardProdutos.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ class CardProdutos extends React.Component {
<ContainerCard>
<Imagem src={this.props.foto} alt="" />
<div>
<p>{this.props.nome}</p>
<p>R${this.props.preco},00</p>
<Texto>{this.props.nome}</Texto>
<Texto>R${this.props.preco},00</Texto>
<BotaoAdc
onClick={() =>
this.props.botao(
Expand Down