Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

styles: fix output amount breaking into two lines #1434

Merged
merged 1 commit into from
Apr 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@
}

.amount-size {
width: 200px;
text-align: end;
}

Expand Down
1 change: 0 additions & 1 deletion client/src/app/components/stardust/Output.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
width: 100%;
display: flex;
margin-bottom: 0px;
height: 32px;
align-items: center;

.output-header {
Expand Down
18 changes: 18 additions & 0 deletions client/src/app/routes/nova/TransactionPage.scss
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,24 @@
}
}

.card--content__account {
width: 100%;
display: flex;
justify-content: space-between;

@include phone-down {
flex-direction: column;
margin-bottom: 8px;

.amount-size {
@include font-size(13px);
margin-top: 4px;
margin-left: 0px;
padding-left: 4px;
}
}
}

.link {
@include font-size(14px);

Expand Down
Loading