More design-updates

This commit is contained in:
Kasper Rynning-Tønnesen
2020-01-22 17:16:02 +01:00
parent b64e17bbab
commit c177f1cda8
7 changed files with 149 additions and 61 deletions

View File

@@ -1,5 +1,5 @@
<template>
<div v-if="highscore.length > 0">
<div class="highscores" v-if="highscore.length > 0">
<h3>Highscore</h3>
<ol>
<li v-for="person in highscore">
@@ -29,10 +29,17 @@ export default {
</script>
<style lang="scss" scoped>
.highscores {
padding-right: 50px;
}
div {
margin: 15px 0 0 0;
font-family: "knowit";
font-family: Arial;
display: inline-flex;
flex-direction: column;
}
ol {
padding-left: 1rem;
margin-left: 0;
}
</style>