From 538d01a812f8280f1b00d66079bf73a241aeb90f Mon Sep 17 00:00:00 2001 From: Gabriel Pelouze Date: Thu, 14 Sep 2023 22:26:26 +0200 Subject: [PATCH] fix grid layout --- vre-panel/pages/index.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/vre-panel/pages/index.tsx b/vre-panel/pages/index.tsx index cf68d8f..5becef2 100644 --- a/vre-panel/pages/index.tsx +++ b/vre-panel/pages/index.tsx @@ -76,9 +76,9 @@ const VLabs = ({}) => { ) )} -
+
{vlabsLoading ? ( -
+
@@ -97,7 +97,7 @@ const VLabs = ({}) => { vlabs.length > 0 ? ( vlabs.map((vlab: any) => { return ( -
+
{
{vlab.title}
-

+

{vlab.description}

@@ -118,7 +118,7 @@ const VLabs = ({}) => { ); }) ) : ( -
+
No virtual labs found
)