change payment method text, change resolution view for global search item

This commit is contained in:
smanylov
2026-03-14 14:01:39 +07:00
parent d54a8bfe60
commit 2774b7eab6
3 changed files with 18 additions and 8 deletions
+8
View File
@@ -419,6 +419,14 @@
.secure-payments-card-header { .secure-payments-card-header {
font-size: 1.8rem; font-size: 1.8rem;
margin-bottom: 8px; margin-bottom: 8px;
height: 44px;
&.yookassa {
max-width: 88px;
margin: 0 auto 8px;
display: flex;
align-items: center;
}
} }
h4 { h4 {
File diff suppressed because one or more lines are too long
@@ -21,11 +21,13 @@ export function SearchedGlobalFilesList({ list }: { list: SearchItem[] }) {
{item?.pageTitle} {item?.pageTitle}
</div> </div>
<div className="global-result-meta"> <div className="global-result-meta">
{item?.height & item?.width && ( {(item?.height && item?.width) &&
<div className="global-result-size"> item.height !== 0 &&
{item?.height}x{item?.width} item.width !== 0 && (
</div> <div className="global-result-size">
)} {item.height}x{item.width}
</div>
)}
<div className="global-result-host"> <div className="global-result-host">
{item?.host} {item?.host}
</div> </div>