diff --git a/src/app/about/about.html b/src/app/about/about.html index 6094aa9..282a4db 100644 --- a/src/app/about/about.html +++ b/src/app/about/about.html @@ -1 +1,19 @@ -

about works!

+

YuriGPT

+

+ YuriGPT is a webcomic about two girls in an online relationship, and all of + the zany antics that stem from that. +

+

+ Because of this, our comics take the format of online chat conversations, + rather than a traditional comic. This may feel strange to you, but we are + hopeful that you come to love the story we tell. +

+

+ We publish a new comic every Monday, and offer an RSS feed so you can use your + favourite application to stay updated. +

+

+ If you love our comic, hate our comic, want to complain about something, or + are just looking for your own companion, we invite you to + join our community. +

diff --git a/src/app/about/about.ts b/src/app/about/about.ts index 6350e92..1c9872e 100644 --- a/src/app/about/about.ts +++ b/src/app/about/about.ts @@ -1,10 +1,16 @@ -import { Component } from '@angular/core'; +/** + * @copyright nhcarrigan + * @license Naomi's Public License + * @author Naomi Carrigan + */ + +import { Component } from "@angular/core"; @Component({ - selector: 'app-about', - imports: [], - templateUrl: './about.html', - styleUrl: './about.css' + imports: [], + selector: "app-about", + styleUrl: "./about.css", + templateUrl: "./about.html", }) export class About { diff --git a/src/app/nav/nav.css b/src/app/nav/nav.css index 5571b9d..04db647 100644 --- a/src/app/nav/nav.css +++ b/src/app/nav/nav.css @@ -15,10 +15,12 @@ ul { margin: 0; padding: 0; flex-wrap: nowrap; + height: 50px; } li { margin: 0 10px; + padding: 0; } img { @@ -26,7 +28,6 @@ img { } #highlight { - font-size: 1.2em; background: var(--foreground); color: var(--background); padding: 5px 10px; @@ -40,9 +41,4 @@ img { ul { flex-wrap: wrap; } - #highlight { - font-size: 1em; - color: var(--foreground); - background: transparent; - } } diff --git a/src/app/nav/nav.html b/src/app/nav/nav.html index 7c07ca9..360b139 100644 --- a/src/app/nav/nav.html +++ b/src/app/nav/nav.html @@ -1,6 +1,6 @@