Update custom.css

This commit is contained in:
Tara Rostami 2023-05-26 15:45:33 +03:30 committed by GitHub
parent 70a4057d6f
commit a0aded34df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -202,8 +202,23 @@ body {
}
.ant-card-dark:hover {
border-color: #e8e8e8;
box-shadow: 0 1px 10px -1px rgb(154 175 238 / 70%);
/*border-color: #e8e8e8;*/
animation:light-shadow ease-in 3s infinite;
}
@keyframes light-shadow {
0% {
box-shadow: 0 1px 10px -1px rgb(154 175 238 / 60%);
}
20% {
box-shadow: 0 1px 10px -1px rgb(154 175 238 / 60%);
}
60% {
box-shadow: 0 1px 11px 2px rgb(154 175 238 / 70%);
}
100% {
box-shadow: 0 1px 10px -1px rgb(154 175 238 / 60%);
}
}
.ant-setting-textarea {