Skip to content

Commit

Permalink
change layout header logic that was preventing some classes to be used
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoineRelief committed Sep 6, 2023
1 parent cc4dc12 commit 9638f0b
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions apps/back-office/src/themes/oort/oort.dev.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
export const theme = {
prefix: null,
primary: '#6f51ae',
headerClass: 'bg-primary-600',
};
1 change: 1 addition & 0 deletions apps/back-office/src/themes/oort/oort.prod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
export const theme = {
prefix: null,
primary: '#6f51ae',
headerClass: 'bg-primary-600',
};
1 change: 1 addition & 0 deletions apps/back-office/src/themes/oort/oort.uat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
export const theme = {
prefix: null,
primary: '#6f51ae',
headerClass: 'bg-primary-600',
};
1 change: 1 addition & 0 deletions apps/front-office/src/themes/oort/oort.dev.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@
export const theme = {
prefix: null,
primary: '#6f51ae',
headerClass: 'bg-primary-600',
};
1 change: 1 addition & 0 deletions apps/front-office/src/themes/oort/oort.prod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@
export const theme = {
prefix: null,
primary: '#6f51ae',
headerClass: 'bg-primary-600',
};
1 change: 1 addition & 0 deletions apps/front-office/src/themes/oort/oort.uat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@
export const theme = {
prefix: null,
primary: '#6f51ae',
headerClass: 'bg-primary-600',
};
2 changes: 1 addition & 1 deletion libs/safe/src/lib/components/layout/layout.component.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- Header -->
<nav
id="app-header"
class="flex p-4 items-center md:justify-between text-white bg-primary-600"
class="flex p-4 items-center md:justify-between text-white"
[ngClass]="theme.headerClass"
>
<div class="flex-shrink-0 flex flex-wrap min-w-0">
Expand Down

0 comments on commit 9638f0b

Please sign in to comment.