Skip to content

Commit f18580a

Browse files
Misc Fix
1 parent cc2ceaa commit f18580a

5 files changed

Lines changed: 5 additions & 4 deletions

File tree

apps/frontend/src/components/bookkeeper/AccountEvents/AccountEventsTable/AccountEventsTable.scss

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@
22

33
.account-events-table {
44
padding: 0 !important;
5-
border-radius: 1rem;
5+
border-radius: $border-radius-sm;
66
overflow: hidden;
77
border: 1px solid $border-color;
88
height: 100%;
9-
border-radius: 1rem;
109
& .expandable-table {
1110
table-layout: fixed;
1211
overflow: hidden;

apps/frontend/src/components/ui/Loading/Loading.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export const Loading = () => {
77
<Spinner animation='grow' variant='primary' />
88
</Col>
99
<Col xs={12} className='d-flex align-items-center justify-content-center'>
10-
<div>Loading...</div>
10+
<div className="text-light">Loading...</div>
1111
</Col>
1212
</Row>
1313
);

apps/frontend/src/styles/constants.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ $theme-colors: (
3939
light: #9f9f9f,
4040
);
4141

42+
$border-radius-sm: 0.375rem;
4243
$border-radius: 1.25rem;
4344
$btn-link-color: $primary;
4445
$btn-padding-x: 0.625rem;

apps/frontend/src/styles/shared.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -477,6 +477,7 @@ svg {
477477
opacity: 1;
478478
z-index: 99;
479479
width: 0.5rem;
480+
background-color: transparent;
480481
& .ps__thumb-y {
481482
width: 0.25rem;
482483
background-color: #DFB316;

apps/frontend/src/utilities/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export const channelStateMap: Record<string, string> = {
6868
DUALOPEND_OPEN_COMMIT_READY: "Dual Open Commit Ready",
6969
};
7070

71-
export const CURRENCY_UNITS = ['SATS', 'BTC'];
71+
export const CURRENCY_UNITS: Units[] = [Units.SATS, Units.BTC];
7272

7373
export const CURRENCY_UNIT_FORMATS = { Sats: '1.0-0', BTC: '1.6-6', OTHER: '1.2-2' };
7474

0 commit comments

Comments
 (0)