continue: change local check button design

This commit is contained in:
smanylov
2026-03-23 14:07:44 +07:00
parent c5c4687063
commit b5ec4ccbcd
4 changed files with 73 additions and 19 deletions
+35
View File
@@ -3911,6 +3911,7 @@
display: flex;
align-self: center;
gap: 5px;
&.image {
svg {
color: v.$color-image;
@@ -4881,4 +4882,38 @@
.local-file-check-result {
cursor: pointer;
}
.btn-check-file {
color: v.$p-color;
cursor: pointer;
background: v.$white;
border: 2px solid v.$p-color;
border-radius: 20px;
align-items: center;
gap: 6px;
min-width: 110px;
padding: 8px 12px;
font-size: 12px;
font-weight: 600;
transition: all .3s;
display: flex;
box-shadow: 0 10px 40px v.$shadow-1;
opacity: 0.8;
&:hover {
box-shadow: 0 5px 5px v.$shadow-1;
opacity: 1;
}
}
.local-file-check-link {
color: v.$p-color;
font-weight: 600;
margin-left: 5px;
&:hover {
text-decoration: underline;
}
}
}