Untitled
unknown
plain_text
2 years ago
680 B
7
Indexable
/* productDetailsStyles.css */
.product-details-page-container {
display: flex;
justify-content: center;
align-items: flex-start;
}
.product-card {
display: flex;
margin-top: 20px;
}
.fetched-image {
width: 300px; /* Adjust width as needed */
height: auto;
border-radius: 8px;
margin-right: 20px;
}
.single-product-details {
flex: 1; /* Take remaining space */
}
.single-product-details h3 {
margin-top: 0;
}
.single-product-details p {
margin-bottom: 10px;
}
.addtocart {
background-color: #007bff;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
}
.addtocart:hover {
background-color: #0056b3;
}
Editor is loading...
Leave a Comment