Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Solved Issue #1063 #1088

Merged
Merged
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
41 changes: 41 additions & 0 deletions styles/view.css
Original file line number Diff line number Diff line change
Expand Up @@ -88,3 +88,44 @@ body {
color: white;
background-color: var(--secondary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
.modal-content {
flex-direction: column; /* Stack content vertically on smaller screens */
}

.modal-right h2 {
font-size: 20px; /* Adjust heading size for mobile */
}

.modal-right p, .modal-right .price {
font-size: 16px; /* Adjust text size for readability */
}

.quick-view-btn, .close {
font-size: 20px; /* Adjust button size */
}

.modal {
padding: 10px; /* Add padding around the modal for smaller screens */
}
}

@media (max-width: 480px) {
.modal-content {
width: 95%; /* Further reduce modal width for very small screens */
}

.close {
font-size: 24px; /* Smaller close button */
}

.modal-right h2 {
font-size: 18px;
}

.modal-right p, .modal-right .price {
font-size: 14px;
}
}