feat: shrink hr margin

This commit is contained in:
eggy 2022-12-02 01:10:56 -05:00
parent 751033960b
commit 24c2fa6a6f
3 changed files with 23 additions and 11 deletions

View File

@ -12,12 +12,12 @@ tags:
A wooden rowboat drifted over a lake. Its two occupants sat facing each other on their respective benches, wearing matching wide brim hats as they relaxed in the bright summer sun. Two fishing lines were mounted on opposite ends of the boat, completely still in the water.
<!-- more -->
All was quiet but for the light brush of wind ruffling their clothing, and the water gently lapping against the side of the boat. Yanfei tipped her head back, adjusting her cap so that it would sit over her eyes. "Thanks again for coming out with me, Ganyu. How's work, by the way?"
"Oh, it's light right now, don't worry," Glancing at the rods floating around the water, Ganyu waved the matter aside. "I should be asking about you. I hear your legal consultancy has gotten a lot of attention lately."
<!-- more -->
"Yup! Although," Yanfei sighed, "there's so much conflict between Vision-holders and the common folk lately. So many people are suing each other left and right… The divorce cases are the *worst.* No one's ever always right, and *I* have to be the one to…to… I wish society was more black and white," she said, slumping further back against the wall.
Ganyu chuckled, her eyes darkening. "You don't say."

21
tailwind.config.js Normal file
View File

@ -0,0 +1,21 @@
/** @type {import('tailwindcss').Config} */
export default {
darkMode: "class",
theme: {
extend: {
typography: (theme) => ({
DEFAULT: {
css: [
{
hr: {
marginTop: "1.5em",
marginBottom: "1.5em",
},
},
],
},
}),
},
},
plugins: [require("@tailwindcss/typography")],
};

View File

@ -1,9 +0,0 @@
import { Config } from "tailwindcss";
export default <Config>{
darkMode: "class",
theme: {
extend: {},
},
plugins: [require("@tailwindcss/typography")],
};