;
lastEditText: string;
lastEdit: Date;
- gitHub: Anchor;
}
export interface CV {
diff --git a/src/page/footer/footer.html.ts b/src/page/footer/footer.html.ts
index a30a00d..0e0de16 100644
--- a/src/page/footer/footer.html.ts
+++ b/src/page/footer/footer.html.ts
@@ -7,7 +7,6 @@ export const generate = ({
title,
email,
curiumVitaes,
- gitHub,
lastEditText,
lastEdit,
}: Footer): html => `
@@ -39,7 +38,7 @@ export const generate = ({
`;
diff --git a/src/page/footer/footer.scss b/src/page/footer/footer.scss
index 61667d3..bb1c22f 100644
--- a/src/page/footer/footer.scss
+++ b/src/page/footer/footer.scss
@@ -47,7 +47,7 @@ footer#page-footer {
padding-bottom: var(--line-height);
width: var(--body-width);
- h6 {
+ p {
display: inline;
&,
* {
diff --git a/src/page/timeline/timeline-element/timeline-element.scss b/src/page/timeline/timeline-element/timeline-element.scss
index a811e89..2f8209b 100644
--- a/src/page/timeline/timeline-element/timeline-element.scss
+++ b/src/page/timeline/timeline-element/timeline-element.scss
@@ -45,7 +45,7 @@ section.timeline-element {
@include square(var(--icon-size));
border-radius: 1000px;
border: var(--line-width) solid var(--accent-color);
- left: calc(-1 * var(--icon-size) / 2 + var(--line-width) / 2);
+ left: calc((var(--line-width) - var(--icon-size)) / 2);
}
}
diff --git a/src/portfolio.ts b/src/portfolio.ts
index b89d0a7..7ce16dd 100644
--- a/src/portfolio.ts
+++ b/src/portfolio.ts
@@ -291,10 +291,6 @@ export const create = () => {
email: `andras@schmelczer.dev`,
lastEditText: `Last modified on `,
lastEdit: new Date(2020, 8 + 1, 30), // months are 0 indexed
- gitHub: new Anchor(
- `https://github.com/schmelczerandras/timeline`,
- `Find this on GitHub`
- ),
}),
};
diff --git a/src/style/mixins.scss b/src/style/mixins.scss
index 1bb1f44..216bacc 100644
--- a/src/style/mixins.scss
+++ b/src/style/mixins.scss
@@ -1,7 +1,5 @@
@import '../framework/framework';
-@import url('https://fonts.googleapis.com/css2?family=Comfortaa&family=Open+Sans:ital@0;1&display=swap');
-
@mixin center-children() {
display: flex;
align-items: center;
@@ -40,7 +38,7 @@
line-height: 1;
@include on-small-screen {
- font-size: 2.5rem;
+ font-size: 3rem;
line-height: 1.1;
}
}
diff --git a/webpack.config.js b/webpack.config.js
index fb8683c..3fa505f 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -15,6 +15,7 @@ module.exports = {
watchOptions: {
ignored: /node_modules/,
},
+ //devtool: 'inline-source-map',
devServer: {
host: '0.0.0.0',
disableHostCheck: true,
@@ -22,7 +23,7 @@ module.exports = {
optimization: {
minimizer: [
new TerserJSPlugin({
- sourceMap: !isProduction,
+ sourceMap: isDevelopment,
}),
new OptimizeCSSAssetsPlugin({}),
],