Update TGBeta.ps1

This commit is contained in:
2025-01-25 01:12:06 -05:00
parent 7a15f29997
commit 347f42d28e

View File

@@ -483,18 +483,20 @@ function GetHtmlContent {
}
.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 {