From 25f0ee71d8c99a38cd239ef513e528b61ff43f44 Mon Sep 17 00:00:00 2001 From: Leandro Facchinetti Date: Sat, 13 Mar 2021 10:19:52 +0000 Subject: [PATCH] --- src/index.ts | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/src/index.ts b/src/index.ts index 4bf13fb..2dd1853 100644 --- a/src/index.ts +++ b/src/index.ts @@ -8,9 +8,9 @@ import fs from "fs-extra"; import cryptoRandomString from "crypto-random-string"; import { html, HTML } from "@leafac/html"; import { css, process as processCSS } from "@leafac/css"; +import javascript from "tagged-template-noop"; import { sql, Database } from "@leafac/sqlite"; import databaseMigrate from "@leafac/sqlite-migration"; -import javascript from "tagged-template-noop"; const VERSION = require("../package.json").version; @@ -109,17 +109,6 @@ export default function killTheNewsletter( monospace; } - a, - button { - color: inherit; - text-decoration: none; - transition: color 0.2s; - - &:hover { - color: #58a6ff; - } - } - h1 { font-size: 1.5em; } @@ -156,6 +145,20 @@ export default function killTheNewsletter( } } + a, + button { + transition: color 0.2s; + + &:hover { + color: #58a6ff; + } + } + + a { + color: inherit; + text-decoration: none; + } + button { font-weight: bold; padding: 0; @@ -507,5 +510,5 @@ if (require.main === module) { process.argv[2] ?? path.join(process.cwd(), "configuration.js") ); require(configurationFile)(require); - console.log(`Configuration file loaded from ‘${configurationFile}’.`); + console.log(`Configuration loaded from ‘${configurationFile}’.`); }