update errors handler

This commit is contained in:
smanylov
2026-02-04 13:21:32 +07:00
parent 362df2f609
commit 584f0dda2f
9 changed files with 140 additions and 20 deletions
+60
View File
@@ -3695,4 +3695,64 @@
color: #d97706;
white-space: nowrap;
}
}
.supported-formats {
background: v.$white;
border-radius: 12px;
padding: 20px;
box-shadow: 0 4px 6px v.$shadow-1;
.formats-title {
font-weight: 600;
color: v.$text-p;
;
margin-bottom: 16px;
display: flex;
align-items: center;
gap: 8px;
}
.format-group {
margin-bottom: 16px;
}
.format-type {
font-weight: 500;
color: v.$text-p;
margin-bottom: 8px;
display: flex;
align-items: center;
gap: 8px;
&.image {
svg {
color: v.$color-image;
}
}
&.audio {
svg {
color: v.$color-audio;
}
}
&.video {
svg {
color: v.$color-video;
}
}
&.document {
svg {
color: v.$color-document;
}
}
}
.format-list {
color: v.$text-s;
font-size: 14px;
line-height: 1.5;
}
}