-
Notifications
You must be signed in to change notification settings - Fork 0
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
Natalia Venditto
committed
May 26, 2019
1 parent
ab47078
commit 36026d8
Showing
15 changed files
with
3,639 additions
and
91 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
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
9 changes: 6 additions & 3 deletions
9
src/commons/components/oops-component/oops-component.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
<p> | ||
Ooops, you're not a supporter! Come back after you've shared your cat coin! | ||
</p> | ||
<div class="notification__base"> | ||
<p class="notification__txt notification__txt--oops"> | ||
Ooops, you're not a supporter! Come back after you've shared your cat coin! | ||
</p> | ||
<img src="../../../assets/notification/sadcat.gif" class="notification__img" alt="sad cat"/> | ||
</div> |
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,22 @@ | ||
@charset "UTF-8"; | ||
|
||
// notification styles | ||
.notification { | ||
&__base { | ||
text-align: center; | ||
width: 600px; | ||
margin: 0 auto; | ||
} | ||
&__txt { | ||
font-size: 30px; | ||
font-family: Verdana, Geneva, Tahoma, sans-serif; | ||
|
||
&--supporter { | ||
color: #33cc33; | ||
} | ||
|
||
&--oops { | ||
color: #cc0000; | ||
} | ||
} | ||
} |
9 changes: 6 additions & 3 deletions
9
src/commons/components/supporter-area/supporter-area.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
<p> | ||
Yay! Welcome back, dear cat supporter! | ||
</p> | ||
<div class="notification__base"> | ||
<p class="notification__txt notification__txt--supporter"> | ||
Yay! Welcome back, dear cat supporter! | ||
</p> | ||
<img src="../../../assets/notification/tenor.gif" class="notification__img" alt="sad cat"/> | ||
</div> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,6 @@ export class CommonReqInterceptor implements HttpInterceptor { | |
} | ||
} | ||
return event; | ||
})); | ||
|
||
})); | ||
} | ||
} | ||
} |
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,4 @@ | ||
interface Kitty { | ||
id: string; | ||
name: string; | ||
} |
This file was deleted.
Oops, something went wrong.