Can now add pets in the appointments page.
This commit is contained in:
@@ -1351,6 +1351,44 @@ body {
|
||||
accent-color: orange;
|
||||
}
|
||||
|
||||
.appt-add-pet-btn {
|
||||
display: inline-block;
|
||||
margin-top: 0.5rem;
|
||||
padding: 0.4rem 0.85rem;
|
||||
background: none;
|
||||
border: 1.5px solid orange;
|
||||
border-radius: 6px;
|
||||
color: orange;
|
||||
font-size: 0.875rem;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
transition: background 0.15s, color 0.15s;
|
||||
}
|
||||
|
||||
.appt-add-pet-btn:hover {
|
||||
background: orange;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.appt-modal-overlay {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
background: rgba(0, 0, 0, 0.45);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
.appt-modal {
|
||||
background: white;
|
||||
border-radius: 12px;
|
||||
padding: 2rem;
|
||||
width: 100%;
|
||||
max-width: 420px;
|
||||
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
|
||||
}
|
||||
|
||||
.appt-link {
|
||||
color: orange;
|
||||
font-weight: 600;
|
||||
|
||||
Reference in New Issue
Block a user