Skip to content

Commit

Permalink
Footer consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
jaegerfe authored and donnyquixotic committed Aug 21, 2023
1 parent 96ae42e commit 0616eae
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default {
text-decoration: none
color: #ffffff
.footer-background
background: var(--q-primary-linear-gradient)
background: var(--q-color-footer-background)
backdrop-filter: blur(14px)
.no-dec
text-decoration: none
Expand Down
1 change: 1 addition & 0 deletions src/config/chains/eos/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ const THEME = {
'color-header-border': '#444',
'color-header-support-background': '#000',
'color-graph-shadow': '#3f65c228',
'color-footer-background': '#000000',
};

// create vars for map colors (border, backround, countries, popup, text, popup)
Expand Down
1 change: 1 addition & 0 deletions src/config/chains/jungle/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ const THEME = {
'color-header-border': '#444',
'color-header-support-background': '#000',
'color-graph-shadow': '#3f65c228',
'color-footer-background': '#000000',
};

export default class TelosTestnet extends BaseChain {
Expand Down
1 change: 1 addition & 0 deletions src/config/chains/telos-testnet/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ const THEME = {
'color-header-border': '#8a65d41a',
'color-header-support-background': 'linear-gradient(180deg, #071A5F 0%, #571aff 147.34%)',
'color-graph-shadow': '#571aff28',
'color-footer-background': '#071A5F',
};

export default class TelosTestnet extends BaseChain {
Expand Down
1 change: 1 addition & 0 deletions src/config/chains/telos/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ const THEME = {
'color-header-border': '#8a65d41a',
'color-header-support-background': 'linear-gradient(180deg, #071A5F 0%, #571aff 147.34%)',
'color-graph-shadow': '#571aff28',
'color-footer-background': '#071A5F',
};

export default class Telos extends BaseChain {
Expand Down
2 changes: 2 additions & 0 deletions src/css/quasar.variables.sass
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,6 @@ $warning : #F2C037
--q-color-header-border: #777777
--q-color-header-support-background: linear-gradient(180deg, #4C4C4C 0%, #3B3B3B 147.34%)
--q-color-graph-shadow: #3f65c228

--q-color-footer-background: #4C4C4C

2 changes: 2 additions & 0 deletions src/types/Theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export interface Theme {
'color-header-border'?: string;
'color-header-support-background'?: string;
'color-graph-shadow'?: string;
'color-footer-background'?: string;
}

export const themeProps: (keyof Theme)[] = [
Expand All @@ -42,4 +43,5 @@ export const themeProps: (keyof Theme)[] = [
'color-header-border',
'color-header-support-background',
'color-graph-shadow',
'color-footer-background',
];

0 comments on commit 0616eae

Please sign in to comment.