Fix scroll down z index

This commit is contained in:
Jon Staab
2025-12-08 09:27:38 -08:00
parent 7bae956ffa
commit c7eec167cf
3 changed files with 6 additions and 2 deletions

View File

@@ -1,5 +1,9 @@
# Changelog
# 1.6.3
* Fix scroll down button z index
# 1.6.2
* Fix modal scrolling and style

View File

@@ -10,7 +10,7 @@
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check src && eslint src",
"format": "git diff head --name-only --diff-filter d | grep -E '(js|ts|svelte)$' | xargs -r prettier --write",
"format": "git diff head --name-only --diff-filter d | grep -E '(js|ts|svelte|css)$' | xargs -r prettier --write",
"format:all": "prettier --write src",
"prepare": "husky"
},

View File

@@ -409,5 +409,5 @@ body.keyboard-open .hide-on-keyboard {
}
.chat__scroll-down {
@apply fixed bottom-28 right-4 md:bottom-16;
@apply fixed bottom-28 right-4 z-feature md:bottom-16;
}