[fix] regression css style
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Evan Reichard 2023-10-25 20:08:09 -04:00
parent cdec621043
commit 39c78997ac
2 changed files with 22 additions and 1 deletions

View File

@ -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;

View File

@ -1,6 +1,6 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./templates/**/*.{html,js}"],
content: ["./templates/**/*.html", "./assets/reader/index.js"],
theme: {
extend: {},
},