Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Monique Cheng committed Apr 17, 2024
1 parent e6c2652 commit 3010fa7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/app/favorites/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ export const HeartIcon = styled(Heart)`
height: 30px;
fill: #333286;
margin-right: 25px;
margin-bottom: 40px;
`;

export const TransparentButton = styled.button`
Expand Down Expand Up @@ -96,6 +97,7 @@ export const Fullscreen = styled.div`

export const Hover = styled.div<{ $ishovering?: boolean }>`
visibility: ${props => (props.$ishovering ? 'visible' : 'hidden')};
transform: translate(-10px, 0px);
margin-bottom: 7px;
color: black;
border: none;
Expand Down
2 changes: 2 additions & 0 deletions src/app/profileScreen/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ export const HeartIcon = styled(Heart)`
width: 25px;
height: 25px;
fill: #333286;
margin-bottom: 40px;
`;

export const BackButtonDiv = styled.div`
Expand Down Expand Up @@ -167,6 +168,7 @@ export const MessageDiv = styled.div`

export const Hover = styled.div<{ $ishovering?: boolean }>`
visibility: ${props => (props.$ishovering ? 'visible' : 'hidden')};
transform: translate(0px, -1px);
margin-bottom: 7px;
color: black;
border: none;
Expand Down
2 changes: 1 addition & 1 deletion src/app/storefront/productButtons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
} from '../../api/supabase/queries/product_queries';

import { Product } from '../../schema/schema';
/* hello */

export default function ProductButtons(props: {
value: string;
setFiltredProducts: (category: Product[]) => void;
Expand Down

0 comments on commit 3010fa7

Please sign in to comment.