feat: restructure flow to date-first and add support for long/short days and activities
This commit is contained in:
@@ -73,3 +73,31 @@
|
||||
color: var(--color-rose-dark);
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.time-notice {
|
||||
background: var(--color-white);
|
||||
border: 2px solid var(--color-peach);
|
||||
border-radius: var(--radius-md);
|
||||
padding: 12px 16px;
|
||||
margin-bottom: 16px;
|
||||
font-size: 0.95rem;
|
||||
color: var(--color-rose-dark);
|
||||
text-align: center;
|
||||
box-shadow: var(--shadow-soft);
|
||||
animation: fadeIn 0.3s ease;
|
||||
}
|
||||
|
||||
.hidden {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateY(-6px);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user