rental price calculation bug, sticky pricing cards on mobile, bigger font app wide, removed delivery options from frontened, searching by location with zipcode works when there's multiple zipcodes in the area,
This commit is contained in:
@@ -54,4 +54,61 @@ main {
|
||||
.navbar .container-fluid {
|
||||
justify-content: space-between;
|
||||
}
|
||||
}
|
||||
|
||||
/* Mobile Sticky Bottom Bar for Item Detail */
|
||||
.mobile-sticky-bottom-bar {
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
padding: 12px 16px;
|
||||
box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
|
||||
z-index: 1000;
|
||||
border-top: 1px solid #e0e0e0;
|
||||
}
|
||||
|
||||
/* Mobile-specific styles */
|
||||
@media (max-width: 767.98px) {
|
||||
/* Make sticky card non-sticky on mobile */
|
||||
.sticky-pricing-card {
|
||||
position: static !important;
|
||||
margin-bottom: 80px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Pricing card input sizing - applies to all screen sizes */
|
||||
.sticky-pricing-card .form-label {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.sticky-pricing-card .input-group-lg .form-control,
|
||||
.sticky-pricing-card .input-group-lg .form-select {
|
||||
font-size: 1rem;
|
||||
padding: 12px 16px;
|
||||
min-height: 48px;
|
||||
}
|
||||
|
||||
/* Style the date input specifically */
|
||||
.sticky-pricing-card input[type="date"] {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
/* Make the calendar icon larger on webkit browsers */
|
||||
.sticky-pricing-card input[type="date"]::-webkit-calendar-picker-indicator {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* Time select dropdown */
|
||||
.sticky-pricing-card .time-select {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
/* Style options in the time dropdown */
|
||||
.sticky-pricing-card .time-select option {
|
||||
font-size: 1rem;
|
||||
padding: 8px;
|
||||
}
|
||||
Reference in New Issue
Block a user