Skip to content

Commit

Permalink
Currency-account fix
Browse files Browse the repository at this point in the history
  • Loading branch information
brozanski committed Jun 3, 2024
1 parent 7e633e8 commit 877c200
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ <h1 class="currency-flag">{{ currencyFlags[selectedAccount.currencyCode] }}</h1>
<div class="lower-container">
<div class="lower-container">
<div class="transactions">
<div class="transactions-table" *ngFor="let transaction of transactions">
<div class="transactions-table" >
<table>
<thead>
<tr>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,8 @@ a:hover{
justify-content: center;
align-items: center;
padding: 20px;
overflow-y: auto;
max-height: 100%;

th{
text-align: center;
Expand All @@ -369,4 +371,30 @@ a:hover{
margin-top: 20px;
margin-left: 10px;
}

&::-webkit-scrollbar {
width: 20px;
padding-right: 20px;
padding-top: 10%;
padding-bottom: 10%;
}

&::-webkit-scrollbar-track {
border-radius: 10px;
margin-top: 30px;
margin-bottom: 30px;
box-shadow: inset 0 0 10px 10px transparentize(#888, 0.5);
border: solid 5px transparent;
}

&::-webkit-scrollbar-thumb {
border-radius: 10px;
box-shadow: inset 0 0 10px 10px transparentize(#888, 0.5);
border: solid 5px transparent;
}

&::-webkit-scrollbar-thumb:hover {
box-shadow: inset 0 0 10px 10px #555;
border: solid 5px transparent;
}
}
1 change: 1 addition & 0 deletions Front/kantor-angular/src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ app-root{
border-radius: 12px;
z-index: 99999;
height: 52px;
top: 20px;
}
.mat-mdc-snack-bar-container .mdc-snackbar__surface{
box-shadow: none !important;
Expand Down

0 comments on commit 877c200

Please sign in to comment.