mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2025-09-10 12:16:18 +00:00
Update custom.css
This commit is contained in:
parent
ed54a4843f
commit
00f762116a
1 changed files with 34 additions and 0 deletions
|
@ -1297,3 +1297,37 @@ b, strong {
|
||||||
.ant-select-sm .ant-select-selection__rendered {
|
.ant-select-sm .ant-select-selection__rendered {
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.ant-collapse {
|
||||||
|
-moz-animation: collfade 0.3s ease;
|
||||||
|
-webkit-animation: 0.3s collfade 0.3s ease;
|
||||||
|
animation: collfade 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes collfade {
|
||||||
|
0% {
|
||||||
|
transform: scaleY(.8);
|
||||||
|
transform-origin: 0% 0%;
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
100% {
|
||||||
|
transform: scaleY(1);
|
||||||
|
transform-origin: 0% 0%;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes collfade {
|
||||||
|
0% {
|
||||||
|
transform: scaleY(.8);
|
||||||
|
transform-origin: 0% 0%;
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
100% {
|
||||||
|
transform: scaleY(1);
|
||||||
|
transform-origin: 0% 0%;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue