change payment method text, change resolution view for global search item
This commit is contained in:
@@ -419,6 +419,14 @@
|
||||
.secure-payments-card-header {
|
||||
font-size: 1.8rem;
|
||||
margin-bottom: 8px;
|
||||
height: 44px;
|
||||
|
||||
&.yookassa {
|
||||
max-width: 88px;
|
||||
margin: 0 auto 8px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
|
||||
h4 {
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -21,11 +21,13 @@ export function SearchedGlobalFilesList({ list }: { list: SearchItem[] }) {
|
||||
{item?.pageTitle}
|
||||
</div>
|
||||
<div className="global-result-meta">
|
||||
{item?.height & item?.width && (
|
||||
<div className="global-result-size">
|
||||
{item?.height}x{item?.width}
|
||||
</div>
|
||||
)}
|
||||
{(item?.height && item?.width) &&
|
||||
item.height !== 0 &&
|
||||
item.width !== 0 && (
|
||||
<div className="global-result-size">
|
||||
{item.height}x{item.width}
|
||||
</div>
|
||||
)}
|
||||
<div className="global-result-host">
|
||||
{item?.host}
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user