This commit is contained in:
Leandro Facchinetti 2021-03-13 10:19:52 +00:00
parent 6799b5fa42
commit 25f0ee71d8
1 changed files with 16 additions and 13 deletions

View File

@ -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}.`);
}