[AAE-6823] Customize font (#2423)

* [AAE-6823] Customize font

* Fix for adf vars

* update

* update

* update

* update

* [AAE-6823] Custom fonts

* [AAE-6823] Create new css var for new button

* [AAE-6823] Cleaning code

* [AAE-6823] Changed configuration to tpl

* [AAE-6823] Cleaning code

* [AAE-6823] Cleaning code
This commit is contained in:
Bartosz Sekuła
2022-02-10 15:04:12 +01:00
committed by GitHub
parent 965c640318
commit c14ba477fd
18 changed files with 250 additions and 98 deletions

View File

@@ -33,6 +33,7 @@ export const getHeaderTextColor = createSelector(selectApp, (state) => state.hea
export const getAppName = createSelector(selectApp, (state) => state.appName);
export const getLogoPath = createSelector(selectApp, (state) => state.logoPath);
export const getCustomCssPath = createSelector(selectApp, (state) => state.customCssPath);
export const getCustomWebFontPath = createSelector(selectApp, (state) => state.webFontPath);
export const getHeaderImagePath = createSelector(selectApp, (state) => state.headerImagePath);
export const getUserProfile = createSelector(selectApp, (state) => state.user);
export const getCurrentFolder = createSelector(selectApp, (state) => state.navigation.currentFolder);

View File

@@ -32,6 +32,7 @@ export interface AppState {
headerTextColor: string;
logoPath: string;
customCssPath: string;
webFontPath: string;
headerImagePath: string;
sharedUrl: string;
currentNodeVersion: VersionEntry;