add null result for search files

This commit is contained in:
smanylov
2026-01-28 16:30:17 +07:00
parent efae068bac
commit a6a493fe97
5 changed files with 85 additions and 31 deletions
+24 -4
View File
@@ -3125,7 +3125,6 @@
}
.global-no-result {
display: none;
text-align: center;
padding: 60px 20px;
background: #f8fafc;
@@ -3199,6 +3198,20 @@
}
}
.empty-results {
text-align: center;
padding: 60px 20px;
color: #64748b;
&-hint {
margin-top: 16px;
padding: 12px;
background: #f0f9ff;
border-radius: 8px;
font-size: 14px;
}
}
.results-list {
display: flex;
flex-direction: column;
@@ -3307,9 +3320,8 @@
color: #065f46;
}
.badge-high-protection {
background: #ddd6fe;
color: #5b21b6;
.badge-not-protected {
background: v.$b-color-2;
}
}
@@ -3387,6 +3399,14 @@
overflow-y: auto;
background: v.$white;
&-wrapper {
display: grid;
grid-template-columns: 1fr 300px;
gap: 20px;
height: 100%;
max-height: 80vh;
}
.image-section {
display: flex;
align-items: center;