First attempt at style fix

This commit is contained in:
Joshua Boniface 2025-03-02 11:12:54 -05:00
parent 4e0cd95b75
commit 037ea7fe8e

View File

@ -643,16 +643,14 @@ const formatStorage = (sizeGB) => {
.overview-container { .overview-container {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 0.5rem; gap: 1rem;
width: 100%; width: 100%;
} }
.vm-controls-container { .vm-controls-container {
background-color: white; background-color: white;
border: 1px solid rgba(0, 0, 0, 0.125);
border-radius: 0.25rem; border-radius: 0.25rem;
padding: 0.5rem; padding: 1rem;
margin-bottom: 0.5rem;
} }
.controls-row { .controls-row {
@ -725,10 +723,8 @@ const formatStorage = (sizeGB) => {
/* VM List styles */ /* VM List styles */
.vm-list-container { .vm-list-container {
background-color: white; background-color: white;
border: 1px solid rgba(0, 0, 0, 0.125);
border-radius: 0.25rem; border-radius: 0.25rem;
overflow: hidden; overflow: hidden;
margin-bottom: 0.5rem;
} }
.vm-list { .vm-list {
@ -817,6 +813,8 @@ const formatStorage = (sizeGB) => {
.no-vm-selected { .no-vm-selected {
text-align: center; text-align: center;
padding: 2rem; padding: 2rem;
background-color: white;
border-radius: 0.25rem;
} }
/* VM Details */ /* VM Details */
@ -826,7 +824,6 @@ const formatStorage = (sizeGB) => {
gap: 1rem; gap: 1rem;
padding: 1rem; padding: 1rem;
background-color: white; background-color: white;
border: 1px solid rgba(0, 0, 0, 0.125);
border-radius: 0.25rem; border-radius: 0.25rem;
} }
@ -875,10 +872,9 @@ const formatStorage = (sizeGB) => {
right: 0; right: 0;
z-index: 1000; z-index: 1000;
min-width: 250px; min-width: 250px;
padding: 0.75rem; padding: 1rem;
margin-top: 0.25rem; margin-top: 0.5rem;
background-color: white; background-color: white;
border: 1px solid rgba(0, 0, 0, 0.15);
border-radius: 0.25rem; border-radius: 0.25rem;
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
} }