Fixed bug where color inputs in theme creator/editor were too small (fixing #429)

This commit is contained in:
Paweł Malak 2023-07-23 10:45:26 +02:00
parent 002a87a6df
commit 97884a5293
2 changed files with 7 additions and 2 deletions

View file

@ -2,5 +2,4 @@
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 10px;
margin-bottom: 20px;
}

View file

@ -40,5 +40,11 @@
}
.InputGroup input[type='color'] {
all: unset;
margin: 0;
padding: 0;
background-color: transparent;
}
.InputGroup input[type='color']:hover {
cursor: pointer;
}