mirror of
https://github.com/billsonnn/nitro-react.git
synced 2024-11-23 14:40:50 +01:00
bills busted fixes ™️
This commit is contained in:
parent
c9b7fcd841
commit
eac7794091
@ -7,7 +7,7 @@
|
||||
}
|
||||
|
||||
.inventory-badge-overflow {
|
||||
height: calc(100% - 86px);
|
||||
height: calc(100% - 91px);
|
||||
}
|
||||
|
||||
@import './item/InventoryBadgeItemView';
|
||||
|
@ -163,7 +163,8 @@ export const InventoryTradeView: FC<InventoryTradeViewProps> = props =>
|
||||
}) }
|
||||
</NitroCardGridView>
|
||||
</div>
|
||||
<div className="d-flex flex-column col-4">
|
||||
<div className="col-8 row mx-0">
|
||||
<div className="d-flex flex-column col-6">
|
||||
<div className="badge bg-primary w-100 p-1 mb-1 me-1">{ LocalizeText('inventory.trading.you') }</div>
|
||||
<NitroCardGridView columns={ 3 }>
|
||||
{ Array.from(Array(MAX_ITEMS_TO_TRADE), (e, i) =>
|
||||
@ -183,7 +184,7 @@ export const InventoryTradeView: FC<InventoryTradeViewProps> = props =>
|
||||
}) }
|
||||
</NitroCardGridView>
|
||||
</div>
|
||||
<div className="d-flex flex-column col-4">
|
||||
<div className="d-flex flex-column col-6">
|
||||
<div className="badge bg-primary w-100 p-1 mb-1 me-1">{ tradeData.otherUser.userName }</div>
|
||||
<NitroCardGridView columns={ 3 }>
|
||||
{ Array.from(Array(MAX_ITEMS_TO_TRADE), (e, i) =>
|
||||
@ -196,9 +197,10 @@ export const InventoryTradeView: FC<InventoryTradeViewProps> = props =>
|
||||
}) }
|
||||
</NitroCardGridView>
|
||||
</div>
|
||||
<div className="d-flex col-8 offset-4">
|
||||
<div className="d-flex col-12 bg-muted">
|
||||
plz
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user