From 21bdfbdeeac08cff0e8fc13ffaf24411e8488970 Mon Sep 17 00:00:00 2001 From: Daniel Eichhorn Date: Thu, 2 Mar 2023 16:19:51 +0100 Subject: [PATCH] Add attribution links --- src/app/app.component.html | 15 +++++++++++---- src/app/app.component.scss | 22 ++++++++++++++++++++-- src/app/app.component.ts | 4 ++++ 3 files changed, 35 insertions(+), 6 deletions(-) diff --git a/src/app/app.component.html b/src/app/app.component.html index d927cfc..b2701c8 100644 --- a/src/app/app.component.html +++ b/src/app/app.component.html @@ -1,8 +1,15 @@ - -
 
+ - + + esp-iot-flasher + share Github + +
-
\ No newline at end of file + + \ No newline at end of file diff --git a/src/app/app.component.scss b/src/app/app.component.scss index f36eab3..f77748e 100644 --- a/src/app/app.component.scss +++ b/src/app/app.component.scss @@ -1,3 +1,9 @@ + +a, a:visited { + color: inherit; + text-decoration: none; +} + .container { max-width: 800px; margin: 4em auto; @@ -9,10 +15,22 @@ flex-direction: column; justify-content: center; } - +.flex-toolbar { + display: flex; + justify-content: space-between; + flex-wrap: wrap; + padding: 16px; +} +.flex-footer { + display: flex; + justify-content: center; + flex-wrap: wrap; + padding: 16px; +} .flex-container { display: flex; justify-content: space-around; flex-wrap: wrap; padding: 16px; -} \ No newline at end of file +} + diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 19511f7..efae6ea 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -10,6 +10,10 @@ import { Partition } from './shared/utils.service'; }) export class AppComponent { + getCurrentYear(): number { + return new Date().getFullYear(); + } + }