-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(PAYMENTS-17872): add default styles
- Loading branch information
1 parent
c8b36f6
commit 924ef61
Showing
64 changed files
with
1,148 additions
and
152 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import './graphik/Graphik-Bold-Web.eot'; | ||
import './graphik/Graphik-Bold-Web.ttf'; | ||
import './graphik/Graphik-Bold-Web.woff'; | ||
import './graphik/Graphik-Bold-Web.woff2'; | ||
|
||
import './graphik/Graphik-Medium-Web.ttf'; | ||
import './graphik/Graphik-Medium-Web.woff'; | ||
import './graphik/Graphik-Medium-Web.woff2'; | ||
|
||
import './graphik/Graphik-Regular-Web.ttf'; | ||
import './graphik/Graphik-Regular-Web.woff'; | ||
import './graphik/Graphik-Regular-Web.woff2'; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import 'reflect-metadata'; | ||
import { injectable } from 'tsyringe'; | ||
// eslint-disable-next-line @typescript-eslint/ban-ts-comment | ||
// @ts-ignore | ||
import { default as styles } from '../../styles/themes/default/secure-styles/style.string-style.scss'; | ||
@injectable() | ||
export class ThemesLoader { | ||
public getTheme(): string { | ||
return styles as string; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export const themes = { | ||
default: 'default', | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
// export const headlessCheckoutAppUrl = | ||
// 'https://secure.xsolla.com/headless-checkout'; | ||
export const headlessCheckoutAppUrl = 'https://localhost:4200'; | ||
export const headlessCheckoutAppUrl = | ||
'https://secure.xsolla.com/headless-checkout'; | ||
export const cdnUrl = 'https://cdn3.xsolla.com'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.