Skip to content

Commit

Permalink
fix(frontend): Adjust some global colors
Browse files Browse the repository at this point in the history
  • Loading branch information
Clashsoft committed Feb 10, 2024
1 parent 896abee commit aa8c725
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 10 deletions.
2 changes: 1 addition & 1 deletion apps/frontend/src/app/core/navbar/navbar.component.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<nav class="navbar navbar-dark navbar-expand-lg bg-secondary">
<nav class="navbar navbar-dark navbar-expand-lg bg-primary">
<div class="container-fluid">
<img class="navbar-logo" ngSrc="/assets/logo.png" alt="Apollusia Logo" width="64" height="64" style="height: 2rem">
<a class="navbar-brand" routerLink="/">Apollusia</a>
Expand Down
2 changes: 1 addition & 1 deletion apps/frontend/src/app/dashboard/card/card.component.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="card">
<div class="card-header">
<div class="card-header text-white bg-dark">
<div class="d-flex justify-content-between">
<h5 class="card-title">{{ poll.title }}</h5>
<div class="d-flex">
Expand Down
11 changes: 3 additions & 8 deletions apps/frontend/src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ $mauve: #e0aaffff;
/* Overrides */

$primary: $french-violet;
$secondary: $purple;
$secondary: $amethyst;
$dark: $persian-indigo;

/* Imports */
Expand Down Expand Up @@ -59,11 +59,6 @@ $dark: $persian-indigo;
height: 100%;
}

.card-header {
background-color: $purple;
color: white;
}

.p-yes {
color: var(--bs-success-text-emphasis) !important;
background-color: var(--bs-success-bg-subtle) !important;
Expand Down Expand Up @@ -131,7 +126,7 @@ $dark: $persian-indigo;
}

.disabled-hour {
background-color: lightgrey;
background-color: var(--bs-secondary-bg-subtle);
cursor: not-allowed;
}

Expand All @@ -145,7 +140,7 @@ $dark: $persian-indigo;
}

blockquote {
border-left: 4px solid $info;
border-left: 4px solid var(--bs-info-border-subtle);
padding: 0 1rem;
}

Expand Down

0 comments on commit aa8c725

Please sign in to comment.