Merge branch 'master' of github.com:KevinMidboe/vinlottis

This commit is contained in:
Kasper Rynning-Tønnesen
2020-01-24 16:21:07 +01:00
5 changed files with 284 additions and 99 deletions

View File

@@ -23,7 +23,7 @@ export default {
response = response.filter(
person => person.name != null && person.name != ""
);
this.highscore = response;
this.highscore = response.slice(0, 5);
}
};
</script>
@@ -41,5 +41,10 @@ div {
ol {
padding-left: 1rem;
margin-left: 0;
li {
padding: 2.5px 0;
width: max-content;
}
}
</style>