Merge pull request 'Set maximum width of the search bar #42' (#43) from feature/limit-searchbar-width into main

Reviewed-on: #43
Reviewed-by: Johannes D. Vos
This commit was merged in pull request #43.
This commit is contained in:
2026-05-10 00:50:16 +02:00
2 changed files with 4 additions and 2 deletions
+3 -2
View File
@@ -26,14 +26,15 @@ limitations under the License.
--submit-button-padding-y: 8px;
--content-height: 32px;
--padding: 4px;
--padding-left: calc(var(--content-height) + var(--padding));
display: flex;
align-items: center;
border: 1.5px solid #ccc;
box-shadow: 0 0px 32px rgba(69, 98, 190, 0.25);
border-radius: calc(var(--content-height) * 0.5 + var(--submit-button-padding-y) + var(--padding));
padding: var(--padding);
padding-left: calc(var(--content-height) + var(--padding));
width: 100%;
padding-left: var(--padding-left);
width: calc(100% - var(--padding-left));
}
.search-wrapper input {
+1
View File
@@ -58,5 +58,6 @@ import Searchbar from '../features/search/components/Searchbar.vue'
#search-form {
width: 70%;
max-width: 624px;
}
</style>