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
2 changes: 2 additions & 0 deletions frontend/limeroad/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,5 @@
npm-debug.log*
yarn-debug.log*
yarn-error.log*

.vercel
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ h3{
display: flex;
justify-content: space-around;
margin-bottom:5dvw;

}
.products{
display: flex;
Expand All @@ -34,6 +35,7 @@ h3{
border-radius: 5px;
box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
background-color: white;

}
.productimage{
width: 25%;
Expand Down Expand Up @@ -197,6 +199,7 @@ h3{
border-radius: 5px;
box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
background-color: white;

}
.billing{
width: 100%;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ export const Productitem = ({el,data,setdata,onOpen,setsingleproduct}) => {
const dispatch=useDispatch();
const [size, setSize] = React.useState('');
const toast = useToast()
// onClick={()=>{setsingleproduct(el);onOpen()}}

return (
<VStack w={'100%'}>


<Box w={'100%'} border={'px solid green'} position={'relative'} >

<Image h={'100%'} border={'1px solid pink'} w={'100%'} src={el.image} alt='memo'/>
<Image onClick={()=>{setsingleproduct(el);onOpen()}} h={'100%'} border={'1px solid pink'} w={'100%'} src={el.image} alt='memo'/>
<Text fontFamily={'"Roboto",Roboto,"Helvetica",Helvetica,"Arial",Arial,sans-serif'} w={'80%'} position={'absolute'} opacity={'0.9'} textAlign={'left'} backgroundColor={'rgb(249,249,248)' } borderRadius={'0.5rem'} left={'0rem'} top={'16rem'} padding={"0.3rem"}>{el.title}</Text>
</Box>
<VStack w={'100%'} gap={'0.3rem'}>
Expand Down