Fix dice dropdown not being visible

This commit is contained in:
SillyLossy
2023-04-11 15:00:51 +03:00
parent ec4b84096b
commit 0f8738eacd
3 changed files with 2 additions and 4 deletions

View File

@ -27,8 +27,7 @@ async function setImageIcon() {
async function setSpinnerIcon() {
try {
const sendButton = document.getElementById('send_picture');
sendButton.style.backgroundImage = `url('/img/spinner-solid.svg')`;
sendButton.classList.add('spin');
sendButton.style.backgroundImage = `url('/img/hourglass-half-solid.svg')`;
}
catch (error) {
console.log(error);

View File

@ -5,7 +5,7 @@
margin: 0;
padding: 1px;
background: no-repeat;
background-size: 26px auto;
background-size: 24px 24px;
background-position: center center;
outline: none;
border: none;

View File

@ -238,7 +238,6 @@ code {
background-position: center;
display: flex;
flex-direction: row;
overflow: hidden;
}
#send_but {