-
Notifications
You must be signed in to change notification settings - Fork 535
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3430188
commit 180a863
Showing
8 changed files
with
332 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
src/app/savings/savings-account-view/general-tab/general-tab.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
$bar: 160px; | ||
$foo: $bar * 8; | ||
$color: #e2e4ec; | ||
|
||
.loader { | ||
margin-bottom: 39px; | ||
overflow: auto; | ||
} | ||
|
||
.loading { | ||
position: absolute; | ||
width: $bar; | ||
height: 8px; | ||
background: linear-gradient(125deg, rgb(255, 255, 255), #c4d2e9, rgb(255, 255, 255)); | ||
animation: grow 4s linear infinite, move 4s linear infinite; | ||
top: 169px; | ||
} | ||
|
||
.sidenav { | ||
overflow-x: hidden; | ||
} | ||
|
||
@keyframes move { | ||
0% { | ||
left: 0; | ||
} | ||
|
||
16.7% { | ||
left: 0; | ||
} | ||
|
||
33.3% { | ||
left: $foo / 2; | ||
} | ||
|
||
50% { | ||
left: $foo - $bar; | ||
} | ||
|
||
66.7% { | ||
left: $foo / 2; | ||
} | ||
|
||
83.3% { | ||
left: 0; | ||
} | ||
|
||
100% { | ||
left: 0; | ||
} | ||
} | ||
|
||
@keyframes grow { | ||
0% { | ||
width: $bar; | ||
} | ||
|
||
16.7% { | ||
width: $foo / 2; | ||
} | ||
|
||
33.3% { | ||
width: $foo / 2; | ||
} | ||
|
||
50% { | ||
width: $bar; | ||
} | ||
|
||
66.7% { | ||
width: $foo / 2; | ||
} | ||
|
||
83.3% { | ||
width: $foo / 2; | ||
} | ||
|
||
100% { | ||
width: $bar; | ||
} | ||
} |