Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
offshiftXFT
protocol-main
Commits
ce39a68a
Commit
ce39a68a
authored
3 years ago
by
XFT-dev
Browse files
Options
Download
Email Patches
Plain Diff
initializing repo
parent
8605a110
Changes
144
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
48 additions
and
0 deletions
+48
-0
frontend/src/themes/variables.scss
frontend/src/themes/variables.scss
+11
-0
frontend/src/tsconfig.app.json
frontend/src/tsconfig.app.json
+13
-0
frontend/src/tsconfig.spec.json
frontend/src/tsconfig.spec.json
+19
-0
frontend/src/typings.d.ts
frontend/src/typings.d.ts
+5
-0
No files found.
frontend/src/themes/variables.scss
0 → 100644
View file @
ce39a68a
$main-background
:
#220E57
;
$card-background
:
#1B0D3D
;
$white-color
:
#ffffff
;
$grey-color
:
#455A7D
;
$text-color
:
#C4CCDD
;
$black-color
:
#000000
;
$btn-color
:
#5800B0
;
$form-color
:
#5800B0
;
$backdrop-modal
:
rgba
(
0
,
0
,
0
,
0
.424
);
This diff is collapsed.
Click to expand it.
frontend/src/tsconfig.app.json
0 → 100644
View file @
ce39a68a
{
"extends"
:
"../tsconfig.json"
,
"compilerOptions"
:
{
"outDir"
:
"../out-tsc/app"
,
"baseUrl"
:
"./"
,
"module"
:
"es2015"
,
"types"
:
[]
},
"exclude"
:
[
"test.ts"
,
"**/*.spec.ts"
]
}
This diff is collapsed.
Click to expand it.
frontend/src/tsconfig.spec.json
0 → 100644
View file @
ce39a68a
{
"extends"
:
"../tsconfig.json"
,
"compilerOptions"
:
{
"outDir"
:
"../out-tsc/spec"
,
"baseUrl"
:
"./"
,
"module"
:
"commonjs"
,
"types"
:
[
"jasmine"
,
"node"
]
},
"files"
:
[
"test.ts"
],
"include"
:
[
"**/*.spec.ts"
,
"**/*.d.ts"
]
}
This diff is collapsed.
Click to expand it.
frontend/src/typings.d.ts
0 → 100644
View file @
ce39a68a
/* SystemJS module definition */
declare
var
module
:
NodeModule
;
interface
NodeModule
{
id
:
string
;
}
This diff is collapsed.
Click to expand it.
Prev
1
…
4
5
6
7
8
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment