feat(frontend): make background colors of components more consistent

This commit is contained in:
Viren070
2024-12-26 21:28:49 +00:00
parent 9a5eef4191
commit fe1f46630d
3 changed files with 8 additions and 7 deletions
@@ -46,7 +46,7 @@
}
.card {
background-color: #2a2a2a; /* Slightly lighter black */
background-color: #1a1a1a; /* Slightly lighter black */
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
padding: 10px;
@@ -1,5 +1,5 @@
.card {
background-color: #2a2a2a; /* Slightly lighter black */
background-color: #1a1a1a; /* Slightly lighter black */
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
padding: 10px;
@@ -23,7 +23,7 @@
}
.card.disabled {
background-color: #222222; /* Greyed out */
background-color: #131313; /* Greyed out */
box-shadow: none;
scale: 0.98;
opacity: 0.5;
@@ -6,9 +6,9 @@
}
.card {
background-color: #1f2123; /* Slightly lighter black */
background-color: #1a1a1a;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
box-shadow: 0 4px 8px rgb(0, 0, 0);
padding: 10px;
display: flex;
justify-content: space-between;
@@ -23,10 +23,10 @@
}
.card.disabled {
background-color: #222222; /* Greyed out */
background-color: #131313;
box-shadow: none;
scale: 0.98;
opacity: 0.5;
opacity: 0.4;
}
.actions button {
@@ -59,6 +59,7 @@
align-items: center;
border-width: 0;
transition: transform 0.2s;
-webkit-tap-highlight-color: transparent;
}
.arrowButton:hover {