fix: 🐛 Fix Color displaying over button in settings (#17172)

This commit is contained in:
Miguel Nieto A 2022-04-11 03:59:57 -05:00 committed by GitHub
parent d6f204afc1
commit 13c433cd56
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,6 +3,6 @@ const form = document.getElementsByClassName('sticky-footer-form')[0];
form.addEventListener('change', () => {
const saveFooter = document.getElementsByClassName('save-footer')[0];
if (saveFooter) {
saveFooter.classList.add('sticky', 'bottom-0');
saveFooter.classList.add('sticky', 'z-sticky', 'bottom-0');
}
});