change payment method text, change resolution view for global search item
This commit is contained in:
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user