Merge branch 'max_dev' of Software_Engineering_I/greenvironment-frontend into master
commit
5cc1a1f835
@ -1,25 +1,18 @@
|
|||||||
@import '../../../styles/mixins.sass'
|
@import '../../../styles/mixins.sass'
|
||||||
@import '../../../styles/vars.sass'
|
@import '../../../styles/vars.sass'
|
||||||
|
|
||||||
#headerbar
|
#profile
|
||||||
@include gridPosition(1, 2, 1, 4)
|
background-color: $cSecondaryBackground
|
||||||
|
grid-template: 3% 94% 3% / 10% 80% 10%
|
||||||
display: grid
|
display: grid
|
||||||
grid-template: 100% /30% 10% 10% 10% 10% 10% 10% 10%
|
min-height: 100vh
|
||||||
background-color: $cHeadPrimaryBackground
|
max-height: 100vh
|
||||||
color: $cHeadFontColor
|
|
||||||
|
|
||||||
#chatcontainer
|
#profilecontainer
|
||||||
@include gridPosition(2, 3, 1, 2)
|
@include gridPosition(2, 2,2,2)
|
||||||
background-color: $cBoxBodyBackground
|
//grid-template: 15% 15% 15% 15% 15% 15% / 100%
|
||||||
|
background-color: $cPrimaryBackground
|
||||||
|
padding: 1em
|
||||||
|
|
||||||
#feedcontainer
|
th
|
||||||
@include gridPosition(2, 3, 2, 3)
|
text-align: left
|
||||||
display: grid
|
|
||||||
grid-template: 10% 90% /100%
|
|
||||||
background-color: $cSecondaryBackground
|
|
||||||
|
|
||||||
#socialcontainer
|
|
||||||
@include gridPosition(2, 3, 3, 4)
|
|
||||||
display: grid
|
|
||||||
grid-template: 50% 50% /100%
|
|
||||||
background-color: $cBoxBodyBackground
|
|
@ -0,0 +1,11 @@
|
|||||||
|
export class Levellist{
|
||||||
|
levels: {level: number, name: string, points: number}[] = [
|
||||||
|
{level: 0, name: "Green Horn",points: 0},
|
||||||
|
{level: 1, name: "Good Willed",points: 100 },
|
||||||
|
{level: 2, name: "Helper", points: 200 },
|
||||||
|
{level: 3, name: "World Saver", points: 300 },
|
||||||
|
{level: 4, name: "Hero of the Green Country", points: 400 },
|
||||||
|
{level: 5, name: "Champion of the Earth", points: 500 },
|
||||||
|
{level: 6, name: "Intergallactic Superhero", points: 600 },
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in New Issue