修改关闭图标样式

This commit is contained in:
dinglili 2024-01-17 16:48:06 +08:00 committed by wangpenglong
parent 22e65ec6dc
commit 38a26573ce
1 changed files with 6 additions and 1 deletions

View File

@ -95,6 +95,7 @@ body {
margin: 5px;
}
.close {
width: 25px;
height: 25px;
@ -103,9 +104,13 @@ body {
cursor: pointer;
margin: 5px;
text-align: center;
border-radius: 50%;
opacity:0.5;
background: url(../images/close_gray.png) no-repeat;
}
.close:hover{
opacity:1;
transform: scale(1.2);
}
.dark .close {
background: url(../images/close.png);