-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #129 from thearyadev/128-add-skeleton-on-chart-load
128 add skeleton on chart load
- Loading branch information
Showing
23 changed files
with
5,380 additions
and
5,336 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"extends": "next/core-web-vitals", | ||
"rules": { | ||
"react/jsx-key": "off", | ||
"react/no-unescaped-entities": "off" | ||
} | ||
"extends": "next/core-web-vitals", | ||
"rules": { | ||
"react/jsx-key": "off", | ||
"react/no-unescaped-entities": "off" | ||
} | ||
} |
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,22 +1,22 @@ | ||
.card { | ||
@apply border-2; | ||
@apply p-3; | ||
@apply rounded; | ||
@apply mb-3; | ||
@apply border-2; | ||
@apply p-3; | ||
@apply rounded; | ||
@apply mb-3; | ||
} | ||
|
||
.heading-container { | ||
} | ||
|
||
.title { | ||
@apply text-lg; | ||
@apply font-bold; | ||
@apply text-lg; | ||
@apply font-bold; | ||
} | ||
|
||
.subtitle { | ||
@apply font-extralight text-center; | ||
@apply font-extralight text-center; | ||
} | ||
|
||
.cardBodyWrap { | ||
@apply grid grid-cols-1 md:grid-cols-3 gap-4; | ||
@apply grid grid-cols-1 md:grid-cols-3 gap-4; | ||
} |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
.chartContainer { | ||
.highcharts-title { | ||
display: none; | ||
} | ||
.highcharts-title { | ||
display: none; | ||
} | ||
} |
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 |
---|---|---|
@@ -1,45 +1,45 @@ | ||
interface HeroColor { | ||
[key: string]: string; | ||
[key: string]: string; | ||
} | ||
export const HeroColors: HeroColor = { | ||
Ana: "#8796B6", | ||
Ashe: "#808284", | ||
Baptiste: "#7DB8CE", | ||
Bastion: "#8c998c", | ||
Blank: "#000000", | ||
Brigitte: "#957D7E", | ||
Cassidy: "#b77e80", | ||
"D.Va": "#F59CC8", | ||
Doomfist: "#947F80", | ||
Echo: "#A4CFF9", | ||
Genji: "#9FF67D", | ||
Hanzo: "#BDB894", | ||
Illari: "#B3A58A", | ||
"Junker Queen": "#89B2D5", | ||
Junkrat: "#F0BE7C", | ||
Kiriko: "#D4868F", | ||
Lucio: "#91CD7D", | ||
Mei: "#81AFED", | ||
Mercy: "#F4EFBF", | ||
Moira: "#9d86e5", | ||
Orisa: "#76967B", | ||
Pharah: "#768BC8", | ||
Ramattra: "#9B89CE", | ||
Reaper: "#8D797E", | ||
Reinhardt: "#9EA8AB", | ||
Roadhog: "#BC977E", | ||
Sigma: "#9CA7AA", | ||
Sojourn: "#D88180", | ||
"Soldier 76": "#838A9C", | ||
Sombra: "#887EBC", | ||
Symmetra: "#98C1D1", | ||
Torbjorn: "#C38786", | ||
Tracer: "#DE9D7D", | ||
Widowmaker: "#A583AB", | ||
Winston: "#A7AABE", | ||
"Wrecking Ball": "#E09C7C", | ||
Zarya: "#F291BB", | ||
Zenyatta: "#F5EC91", | ||
LifeWeaver: "#E0B6C5", | ||
Mauga: "#E0B6C5", | ||
Ana: "#8796B6", | ||
Ashe: "#808284", | ||
Baptiste: "#7DB8CE", | ||
Bastion: "#8c998c", | ||
Blank: "#000000", | ||
Brigitte: "#957D7E", | ||
Cassidy: "#b77e80", | ||
"D.Va": "#F59CC8", | ||
Doomfist: "#947F80", | ||
Echo: "#A4CFF9", | ||
Genji: "#9FF67D", | ||
Hanzo: "#BDB894", | ||
Illari: "#B3A58A", | ||
"Junker Queen": "#89B2D5", | ||
Junkrat: "#F0BE7C", | ||
Kiriko: "#D4868F", | ||
Lucio: "#91CD7D", | ||
Mei: "#81AFED", | ||
Mercy: "#F4EFBF", | ||
Moira: "#9d86e5", | ||
Orisa: "#76967B", | ||
Pharah: "#768BC8", | ||
Ramattra: "#9B89CE", | ||
Reaper: "#8D797E", | ||
Reinhardt: "#9EA8AB", | ||
Roadhog: "#BC977E", | ||
Sigma: "#9CA7AA", | ||
Sojourn: "#D88180", | ||
"Soldier 76": "#838A9C", | ||
Sombra: "#887EBC", | ||
Symmetra: "#98C1D1", | ||
Torbjorn: "#C38786", | ||
Tracer: "#DE9D7D", | ||
Widowmaker: "#A583AB", | ||
Winston: "#A7AABE", | ||
"Wrecking Ball": "#E09C7C", | ||
Zarya: "#F291BB", | ||
Zenyatta: "#F5EC91", | ||
LifeWeaver: "#E0B6C5", | ||
Mauga: "#E0B6C5", | ||
}; |
Oops, something went wrong.