Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating footer colors #748

Merged
merged 1 commit into from
Aug 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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',
];
Loading