Skip to content

Commit 3cbeff4

Browse files
committed
not sure
2 parents d95c799 + c57224f commit 3cbeff4

6 files changed

Lines changed: 133 additions & 3 deletions

File tree

app/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
77
<title>CHRONOS</title>
88
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"/>
9-
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@100&family=Lexend+Peta&display=swap" />
9+
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Open+Sans&family=Inter:wght@100&family=Lexend+Peta&display=swap" />
1010
<script src="https://cdn.plot.ly/plotly-latest.min.js" charset="utf-8"></script>
1111
</head>
1212
<body>

app/stylesheets/constants.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@ $icon: #999999;
66
$header: #888888;
77
$hover: rgba(255,255,255, 0.1);
88
$red: rgb(255, 0, 0);
9+
// #cc0000
910
$boxshadow: 2px 2px 6px rgb(187, 187, 187);
1011
$boxshadow1: 0 2px 2px 0 rgba(153, 153, 153, 0.14), 0 3px 1px -2px rgba(153, 153, 153, 0.2), 0 1px 5px 0 rgba(153, 153, 153, 0.12);
1112
$boxshadow2: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
1213
$boxshadow3: 0 6px 6px 0 rgba(153, 153, 153, 0.14), 0 6px 6px -2px rgba(153, 153, 153, 0.2), 0 6px 8px 0 rgba(153, 153, 153, 0.12);
1314
$logoPositionLeft: 55px;
14-
$cardColorHover: #ccd8e1;
15+
$cardColorHover: #b2b4b5;
1516
$logoPositionTop: 40px;
1617
$logoSize: 25px;
1718
$logoTransition: 100ms;

app/stylesheets/index.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@import url('https://fonts.googleapis.com/css?family=Baloo+Bhaijaan&display=swap');
2-
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100&family=Inter:wght@100&family=Lexend+Peta&family=Nunito+Sans:wght@300;400;600&family=Quicksand:wght@300&display=swap');
2+
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Inter:wght@100&family=Inter:wght@100&family=Lexend+Peta&family=Nunito+Sans:wght@300;400;600&family=Quicksand:wght@300&display=swap');
33
@import './constants.scss';
44

55
* {

package-lock.json

Lines changed: 123 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@
112112
"typescript": "^3.9.5",
113113
"url-loader": "^2.1.0",
114114
"webpack": "^4.43.0",
115+
"webpack-bundle-analyzer": "^3.8.0",
115116
"webpack-cli": "^3.3.11",
116117
"webpack-dev-server": "^3.11.0"
117118
}

webpack.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
const path = require('path');
22
const HtmlWebpackPlugin = require('html-webpack-plugin');
3+
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
34

45
module.exports = {
56
entry: './app/index.tsx',
@@ -58,6 +59,10 @@ module.exports = {
5859
new HtmlWebpackPlugin({
5960
template: 'app/index.html',
6061
}),
62+
// new BundleAnalyzerPlugin({
63+
// openAnalyzer: true,
64+
// analyzerMode: 'static'
65+
// }),
6166
],
6267
resolve: {
6368
extensions: ['.js', '.jsx', '.ts', '.tsx'],

0 commit comments

Comments
 (0)