Merge pull request #17578 from Chocobo1/webui

Fix icon in WebUI being trimmed
This commit is contained in:
Chocobo1
2022-08-23 10:54:02 +08:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -310,11 +310,11 @@ li.divider {
}
.panel-collapse {
background: url("../icons/collapse.svg") left top no-repeat;
background: url("../icons/collapse.svg") center/16px no-repeat;
}
.panel-expand {
background: url("../icons/collapse.svg") left top no-repeat;
background: url("../icons/collapse.svg") center/16px no-repeat;
transform: rotate(180deg);
}