Fixed bug where color inputs in theme creator/editor were too small (fixing #429)
This commit is contained in:
parent
002a87a6df
commit
97884a5293
2 changed files with 7 additions and 2 deletions
|
@ -2,5 +2,4 @@
|
|||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
grid-gap: 10px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
|
|
@ -40,5 +40,11 @@
|
|||
}
|
||||
|
||||
.InputGroup input[type='color'] {
|
||||
all: unset;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.InputGroup input[type='color']:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue