From 3e24f06c96dcdbcaf99c496352cfba97382274e2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rafael=20L=C3=A1szl=C3=B3?= <rlacko99@gmail.com>
Date: Wed, 12 May 2021 00:23:09 +0200
Subject: [PATCH] fix last element col width

---
 src/app/core/service-list/service-list.component.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/app/core/service-list/service-list.component.html b/src/app/core/service-list/service-list.component.html
index 236066e..19fcf08 100644
--- a/src/app/core/service-list/service-list.component.html
+++ b/src/app/core/service-list/service-list.component.html
@@ -77,7 +77,7 @@
     <div class='container'>
       <div class='row '>
         <div *ngFor='let service of services; let i = index; trackBy: trackById'
-             [class.col-12]='services.length % 2 == 1 && i == services.length-1'
+             [class.col-sm-12]='services.length % 2 == 1 && i == services.length-1'
              class='col-12 col-sm-6 border-top p-1'>
           <app-service-in-list [service]='service'></app-service-in-list>
           <button class='btn btn-link' *ngIf='isLoggedIn'
-- 
GitLab