From 39c78997ac1f6b4a141cca0af6e83ea14a2340b6 Mon Sep 17 00:00:00 2001 From: Evan Reichard Date: Wed, 25 Oct 2023 20:08:09 -0400 Subject: [PATCH] [fix] regression css style --- assets/style.css | 21 +++++++++++++++++++++ tailwind.config.js | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/assets/style.css b/assets/style.css index 49ab029..4ef396f 100644 --- a/assets/style.css +++ b/assets/style.css @@ -588,6 +588,10 @@ video { top: -0.5rem; } +.bottom-0 { + bottom: 0px; +} + .bottom-4 { bottom: 1rem; } @@ -793,6 +797,10 @@ video { display: grid; } +.contents { + display: contents; +} + .hidden { display: none; } @@ -985,6 +993,10 @@ video { cursor: pointer; } +.resize { + resize: both; +} + .snap-x { scroll-snap-type: x var(--tw-scroll-snap-strictness); } @@ -1673,6 +1685,15 @@ video { --tw-ring-opacity: 0.05; } +.invert { + --tw-invert: invert(100%); + filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); +} + +.filter { + filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); +} + .transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter; transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; diff --git a/tailwind.config.js b/tailwind.config.js index aca8478..cb1bae1 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,6 +1,6 @@ /** @type {import('tailwindcss').Config} */ module.exports = { - content: ["./templates/**/*.{html,js}"], + content: ["./templates/**/*.html", "./assets/reader/index.js"], theme: { extend: {}, },