Skip to content

Commit

Permalink
chore: small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
MishaZhem committed Aug 20, 2024
1 parent 2fa791d commit 43b6491
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@let nftData = nft();
@if (nftData) {
<div class="info-open">
<div class="info">
<tui-avatar
class="logo-nft nft-icon"
[src]="nftData.src"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
height: 10rem;
}

.info-open {
.info {
position: relative;
display: flex;
padding: 1rem;
padding: 1rem 0;
justify-content: space-between;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export interface Transaction {
readonly time: number;
}

export const INITIAL_DATA_TABLE: Transaction[] = [
export const TRANSACTIONS: Transaction[] = [
{
type: 'Putting up for sale',
priceUsd: 2,
Expand Down Expand Up @@ -53,28 +53,28 @@ export const INITIAL_DATA: NFT[] = [
src: './nft/1.jpg',
price: 1,
tags: ['Premium', 'VIP'],
transactions: INITIAL_DATA_TABLE,
transactions: TRANSACTIONS,
},
{
name: 'Pryor',
src: './nft/2.jpg',
price: 2,
tags: ['Premium', 'VIP'],
transactions: INITIAL_DATA_TABLE,
transactions: TRANSACTIONS,
},
{
name: 'Olea',
src: './nft/3.jpg',
price: 3,
tags: ['Premium', 'VIP'],
transactions: INITIAL_DATA_TABLE,
transactions: TRANSACTIONS,
},
{
name: 'Imogen',
src: './nft/4.jpg',
price: 4,
tags: ['Premium', 'VIP'],
transactions: INITIAL_DATA_TABLE,
transactions: TRANSACTIONS,
},
];

Expand Down

0 comments on commit 43b6491

Please sign in to comment.