Add search form submit #32 #45

Merged
jakob.scheid merged 20 commits from feature/search-form-submit into main 2026-05-14 11:29:19 +02:00
Showing only changes of commit 587a97fa03 - Show all commits
@@ -52,6 +52,7 @@ searchQueryModel.value = props.searchQuery;
border-radius: 28px; border-radius: 28px;
text-align: center; text-align: center;
background-color: #f7f7f7; background-color: #f7f7f7;
animation: fade-in 0.8s ease-out;
height: var(--error-message-height); height: var(--error-message-height);
display: flex; display: flex;
justify-content: center; justify-content: center;
@@ -67,4 +68,18 @@ searchQueryModel.value = props.searchQuery;
width: 100%; width: 100%;
} }
} }
@keyframes fade-in {
0% {
opacity: 0;
}
10% {
opacity: 0;
transform: scale(1.02);
}
100% {
opacity: 100;
transform: scale(1);
}
}
</style> </style>