Skip to content

Commit

Permalink
fix color styles
Browse files Browse the repository at this point in the history
  • Loading branch information
JamieScottC committed Dec 21, 2023
1 parent 161d4ea commit f4ac6a2
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions gui/views/training.vue
Expand Up @@ -326,7 +326,7 @@ function playConfetti() {
}
#trainingPage .hover\:bg-caldera-primary:hover {
background-color: var(--primary-color);
background-color: #8b0000 !important;
}
#trainingPage .rounded {
Expand All @@ -348,7 +348,7 @@ function playConfetti() {
}
#trainingPage .badge-container-button {
color: var(--color-white);
color: #ffffff;
width: 5rem !important;
padding: 0.85rem 0.25rem 0.25rem;
font-size: 1rem;
Expand All @@ -363,7 +363,7 @@ function playConfetti() {
}
#trainingPage .badge-container-button:hover {
background-color: var(--primary-color);
background-color: #8b0000 !important;
}
#trainingPage .badge-icon-container {
Expand All @@ -388,13 +388,13 @@ function playConfetti() {
}
#trainingPage .badge-completed-text {
background-color: var(--color-complete);
color: var(--color-gray) !important;
background-color: #8b0000 !important;
color: gray !important;
}
#trainingPage .badge-text {
text-decoration: none;
color: var(--color-white);
color: #ffffff;
padding-left: 0.25rem;
padding-right: 0.25rem;
margin-top: 1rem;
Expand All @@ -404,7 +404,7 @@ function playConfetti() {
#trainingPage .selected-badge {
font-weight: bold;
background-color: var(--primary-color);
background-color: #8b0000 !important;
border-radius: 5px;
}
Expand Down Expand Up @@ -467,14 +467,14 @@ function playConfetti() {
#trainingPage .flag-card-title {
padding: 5px;
background-color: #202020;
color: var(--color-white);
color: #ffffff;
font-size: 1.125rem;
line-height: 1.75rem;
text-align: left;
}
#trainingPage .flag-card-title-active {
background-color: var(--primary-color);
background-color: #8b0000;
}
#trainingPage .flag-card-title div:first-child span {
Expand Down Expand Up @@ -509,7 +509,7 @@ function playConfetti() {
}
#trainingPage .flag-card-content-active {
border: 2px solid var(--primary-color);
border: 2px solid #8b0000;
border-bottom: none;
}
Expand All @@ -521,7 +521,7 @@ function playConfetti() {
}
#trainingPage .flag-show-more-active {
border: 2px solid var(--primary-color);
border: 2px solid #8b0000;
border-top: none;
}
Expand Down

0 comments on commit f4ac6a2

Please sign in to comment.