Fix minimal details

This commit is contained in:
prototypa
2023-01-08 21:58:45 -05:00
parent 8401a3fd45
commit e9a3182b5a
2 changed files with 1 additions and 2 deletions

View File

@ -17,7 +17,7 @@
} }
#header.scroll { #header.scroll {
@apply shadow-lg bg-white md:bg-white/90 md:backdrop-blur-sm dark:bg-slate-900 dark:md:bg-slate-900/90; @apply shadow-md md:shadow-lg bg-white md:bg-white/90 md:backdrop-blur-sm dark:bg-slate-900 dark:md:bg-slate-900/90;
} }
.dropdown:hover .dropdown-menu { .dropdown:hover .dropdown-menu {

View File

@ -23,7 +23,6 @@ import { SITE } from '~/config.mjs';
} }
function attachEvent(selector, event, fn) { function attachEvent(selector, event, fn) {
console.log(selector);
const matches = typeof selector === 'string' ? document.querySelectorAll(selector) : selector; const matches = typeof selector === 'string' ? document.querySelectorAll(selector) : selector;
if (matches && matches.length) { if (matches && matches.length) {
matches.forEach((elem) => { matches.forEach((elem) => {