From 347f42d28e987de193bcfe2109fe8a7eda5352c4 Mon Sep 17 00:00:00 2001 From: Stephan Yelle Date: Sat, 25 Jan 2025 01:12:06 -0500 Subject: [PATCH] Update TGBeta.ps1 --- TGBeta.ps1 | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/TGBeta.ps1 b/TGBeta.ps1 index abf0259..da87f80 100644 --- a/TGBeta.ps1 +++ b/TGBeta.ps1 @@ -481,20 +481,22 @@ function GetHtmlContent { background-color: #dc3545; color: white; } - .columns-container { + .columns-container { display: flex; - justify-content: space-between; /* Space columns evenly */ - gap: 5px; /* Add spacing between the two columns */ - align-items: flex-start; /* Align columns to the top */ + justify-content: center; /* Center the columns */ + gap: 5px; /* Reduce the gap to minimal space */ + align-items: flex-start; /* Align the columns at the top */ + padding: 0; /* Remove extra padding around the container */ } .column { - border: 2px solid #444; /* Adjust border color */ - border-radius: 8px; /* Optional rounded corners */ - padding: 15px; /* Add some padding */ - - background-color: #1e1e1e; /* Match the background color */ - box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3); /* Optional: Add shadow */ + width: 48%; /* Adjust width to make columns more compact */ + border: 2px solid #444; + border-radius: 8px; + padding: 10px; /* Slightly reduce padding inside the columns */ + background-color: #1e1e1e; + box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3); + margin: 0; /* Remove extra margins */ } .log {