Skip to content

Commit

Permalink
Merge pull request #5 from snehasharma1111/master
Browse files Browse the repository at this point in the history
Minor fixes
  • Loading branch information
akshatmittal61 authored Jan 3, 2025
2 parents 88487ae + 3d2de96 commit 665cdde
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
4 changes: 2 additions & 2 deletions components/Groups/summary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ const GroupSummary: React.FC<IGroupSummaryProps> = ({ data }) => {
</Typography>
<Typography size="s">
{balance.gives > 0
? `owes ${balance.gives.toFixed(2)} in total`
? `gives ${balance.gives.toFixed(2)} in total`
: balance.gets > 0
? `owes ${balance.gets.toFixed(2)} in total`
? `gets ${balance.gets.toFixed(2)} in total`
: null}
</Typography>
</div>
Expand Down
12 changes: 10 additions & 2 deletions components/Loader/styles.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,30 @@
.loader-bar {
width: 100vw;
margin: 0 auto;
height: 4px;
height: 6px;
background-color: rgba(179, 64, 56, 0.2);
position: fixed;
top: 0;
left: 0;
z-index: 20;

@include responsive(phone) {
height: 4px;
}

&-line {
position: absolute;
top: 0;
left: 0;
display: inline-flex;
width: 50%;
height: 100%;
background-color: var(--accent-color);
background-color: var(--accent-color-heavy);
animation: move 1s linear infinite;

@include theme(dark) {
background-color: var(--accent-color);
}
}
}

Expand Down

0 comments on commit 665cdde

Please sign in to comment.