From 7546256c387323075ff647f54c5b6a3edb4d4936 Mon Sep 17 00:00:00 2001 From: Daniel Rainer <daniel.m.rainer@student.uibk.ac.at> Date: Tue, 23 Feb 2021 17:08:15 +0100 Subject: [PATCH] Make search input smaller on medium width screens Give more space to search results. --- src/main/webapp/app/mock-search/mock-search.component.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/webapp/app/mock-search/mock-search.component.html b/src/main/webapp/app/mock-search/mock-search.component.html index 7c3b69be9..ce0a52cf2 100644 --- a/src/main/webapp/app/mock-search/mock-search.component.html +++ b/src/main/webapp/app/mock-search/mock-search.component.html @@ -5,10 +5,10 @@ (scrolled)="onScroll()"> <jhi-search-input - class="col-12 col-md-6 col-lg-4 col-xl-3" + class="col-12 col-md-5 col-lg-4 col-xl-3" (searchInputEvent)="updateSearchInput($event)"> </jhi-search-input> - <div class="col-12 col-md-6 col-lg-8 col-xl-9"> + <div class="col-12 col-md-7 col-lg-8 col-xl-9"> <div class="row"> <jhi-exercise-card *ngFor="let result of results" class="card-container col-12 col-lg-6 col-xl-4" -- GitLab