Vinlottispage UI redesign #56

Merged
Adrianht merged 26 commits from enhancement/vinlottispage-rework into master 2020-11-03 11:41:39 +00:00
3 changed files with 196 additions and 236 deletions
Showing only changes of commit 5ffb10468c - Show all commits

View File

@@ -19,39 +19,19 @@
</section>
<div class="container">
<!-- <span> Scroll for å annen gøy statistikk</span> -->
<section class="container">
<p class="scroll-info"> | Scroll for å se annen gøy statistikk</p>
<section class="header-and-notification">
<h1 @click="startCountdown">Vinlotteri</h1>
<img
src="/public/assets/images/notification.svg"
alt="Notification-bell"
@click="requestNotificationAccess"
class="notification-request-button"
role="button"
v-if="notificationAllowed"
/>
</section>
<div class="to-lottery-container">
<a href="#/lottery" class="to-lottery">Vil du til lotteriet?<span class="vin-link">Trykk her</span></a>
</div>
<Highscore class="highscore"/>
<TotalBought class="total-bought" />
<section class="chart-container">
<PurchaseGraph class="purchase" />
<WinGraph class="win" />
</section>
<TotalBought class="total-bought" />
<Vipps class="vipps-icon" />
<Highscore class="highscore"/>
<Wines class="wines-container" />
</div>
</section>
<Countdown :hardEnable="hardStart" @countdown="changeEnabled" />
</div>
@@ -199,126 +179,46 @@ h1 {
.container{
display: flex;
flex-direction: column;
.header-and-notification{
display: flex;
flex-direction: row;
margin: auto;
}
.vipps-icon{
margin: 1em;
}
@include tablet {
margin: .5em;
.chart-container {
display: flex;
width: 100%;
}
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: auto-flow min-content;
grid-template-areas: "top-top top-top top-top"
"top-bot top-bot top-bot"
"middle-top middle-top middle-top"
"middle-bot-left middle-bot-left middle-bot-right"
"bot-left bot-right bot-right";
grid-template-columns: repeat(12, 1fr);
.header-and-notification {
grid-area: top-top;
}
.to-lottery-container{
grid-area: top-bot;
.scroll-info {
grid-column: 3 / -3;
}
.chart-container {
grid-area: middle-top;
grid-column: 3 / -3;
}
.total-bought {
grid-area: middle-bot-left;
grid-column: 3 / -3;
}
.highscore {
border-top: 1px solid rgb(237, 237, 237);
grid-area: bot-left;
grid-column: 3 / -3;
align-self: baseline;
}
.wines-container {
border-top: 1px solid rgb(237, 237, 237);
padding-left: 1em;
border-left: 1px solid rgb(237, 237, 237);
grid-area: bot-right;
}
.vipps-icon {
padding-left: 1em;
align-self: center;
grid-area: middle-bot-right;
border-left: 1px solid rgb(237, 237, 237);
grid-column: 3 / -3;
}
}
@include desktop {
// @include desktop {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-template-rows: auto-flow min-content;
grid-template-areas: "top-top top-top top-top top-top"
"top-bot top-bot top-bot top-bot"
"middle-top middle-top middle-top middle-top"
"middle-bot middle-bot middle-bot aside"
"bot-left bot-right bot-right aside";
grid-gap: 1em;
align-items: center;
.header-and-notification {
grid-area: top-top;
}
.to-lottery-container {
grid-area: top-bot;
}
.chart-container {
grid-area: middle-top;
}
.total-bought {
grid-area: middle-bot;
border-bottom: 1px solid rgb(237, 237, 237);
}
.highscore {
border: none;
grid-area: bot-left;
}
.wines-container {
border: none;
grid-area: bot-right;
}
.vipps-icon {
grid-area: aside;
padding-left: 3em;
border-left: 1px solid rgb(237, 237, 237);
}
}
@include widescreen {
width: 70%;
max-width: 1800px;
margin: auto;
.vipps-icon {
padding-left: 6em;
}
}
// }
// @include widescreen {
// }
}

View File

@@ -1,13 +1,19 @@
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
<template>
<div class="highscores" v-if="highscore.length > 0">
<h3>
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
<router-link to="highscore">
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
Topp 10 vinnere <span class="vin-link">Se alle &gt;</span>
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
<section class="heading">
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
<h3>
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
Topp 5 vinnere
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
</h3>
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
<router-link to="highscore" class="">
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
<span class="vin-link">Se alle vinnere</span>
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
</router-link>
</h3>
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
<ol>
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
<li v-for="person in highscore" :key="person">
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
{{ person.name }} - {{ person.wins.length }}
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
</section>
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
<ol class="winner-list-container">
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
<li v-for="(person, index) in highscore" :key="person" class="single-winner">
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
<span class="placement">{{index + 1}}</span>
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
<span class="winner-icon"> ic </span>
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
<p class="winner-name">{{ person.name }}</p>
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
</li>
</ol>
</div>
@@ -29,60 +35,69 @@ export default {
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
response = response.filter(
person => person.name != null && person.name != ""
);
this.highscore = response.slice(0, 10);
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
this.highscore = response.slice(0, 5);
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
}
};
</script>
<style lang="scss" scoped>
@import "../styles/media-queries.scss";
div {
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
margin: 0;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
font-family: Arial;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
display: inline-flex;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
flex-direction: column;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
@import "../styles/variables.scss";
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
.heading {
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
display: flex;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
justify-content: space-between;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
align-items: center;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
}
h3 {
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
text-align: left;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
a {
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
text-decoration: none;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
color: #333333;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
& a {
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
&:focus,
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
&:active,
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
&:visited {
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
text-decoration: none;
color: #333333;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
&:focus,
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
&:active,
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
&:visited {
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
text-decoration: none;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
color: #333333;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
}
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
}
KevinMidboe commented 2020-11-03 08:36:12 +00:00 (Migrated from github.com)
Review

Could also update api to take a size 😬

Could also update api to take a `size` 😬
}
ol {
padding-left: 1.375rem !important;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
list-style-type: none;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
margin-left: 0;
margin: 0 0 1.5em;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
padding: 0;
counter-reset: item;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
& > li {
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
padding: 2.5px 0;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
width: max-content;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
margin: 0 0 0 -1.25rem;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
padding: 0;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
list-style-type: none;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
counter-increment: item;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
&:before {
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
display: inline-block;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
width: 1em;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
padding-right: 0.5rem;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
font-weight: bold;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
text-align: right;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
content: counter(item) ".";
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
}
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
.winner-list-container {
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
width: 100%;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
display: grid;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
grid-template: 1fr / repeat(5, 1fr);
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
column-gap: 2em;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
margin: 0;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
.single-winner {
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
width: 10em;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
background: $primary;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
padding: 1em;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
display: grid;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
grid-template: 1fr .3fr / 1fr 1fr 1fr;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
justify-content: center;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
align-items: center;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
justify-items: center;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
.placement {
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
grid-row: 1;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
grid-column: 1 / 3;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
font-size: 3em;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
}
@include mobile {
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
padding: 5px 0;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
.winner-name {
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
grid-row: 2;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
grid-column: 1 / -1;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
}
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
.winner-icon {
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
grid-row: 1;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
grid-column: 3;
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
}
}
}
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
KevinMidboe commented 2020-11-03 08:35:10 +00:00 (Migrated from github.com)
Review

Same as above. Try not to use entire objects as keys.

Same as above. Try not to use entire objects as keys.
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
Adrianht commented 2020-11-03 09:14:11 +00:00 (Migrated from github.com)
Review

Fixed

Fixed

View File

@@ -1,6 +1,15 @@
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
<template>
<div class="outer-bought">
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
<section class="outer-bought">
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
<h3>Loddstatistikk</h3>
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
<div class="inner-bought-container total-ballots">
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
Totalt&nbsp;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
<span class="total">{{ total }}</span>
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
&nbsp;kjøpte og&nbsp;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
<span>{{ totalWin }}&nbsp;vinn</span>
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
</div>
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
<div class="bought-container">
<div
v-for="color in colors"
@@ -8,34 +17,23 @@
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
color.name +
'-container ' +
color.name +
'-ballot inner-bought-container ballot-element'
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
'-ballot ballot-element-local'
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
"
:key="color.name"
>
<div class="number-container">
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
<span class="color-total bought-number-span">
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
<p class="number-container">
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
{{translate(color.name)}} vinnersjanse
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
<!-- <span class="color-total bought-number-span">
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
{{ color.total }}
</span>
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
<span>kjøpte</span>
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
</div>
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
</span> -->
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
</p>
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
<h3>{{ color.totalPercentage }}% vinn</h3>
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
<div class="inner-text-container">
<div>{{ color.win }} vinn</div>
<div>{{ color.totalPercentage }}% vinn</div>
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
</div>
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
</div>
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
<div class="inner-bought-container total-ballots">
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
<div class="total-container">
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
Totalt&nbsp;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
<div>
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
<span class="total">{{ total }}</span> kjøpte
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
</div>
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
<div>{{ totalWin }} vinn</div>
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
<div>{{ stolen }} stjålet</div>
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
</div>
</div>
</div>
</div>
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
</section>
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
</template>
<script>
import { colorStatistics } from "@/api";
@@ -114,6 +112,23 @@ export default {
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
this.colors = this.colors.sort((a, b) => (a.win > b.win ? -1 : 1));
},
methods: {
translate(color){
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
switch(color) {
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
case "blue":
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
return "Blå"
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
break;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
case "red":
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
return "Rød"
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
break;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
case "green":
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
return "Grønn"
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
break;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
case "yellow":
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
return "Gul"
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
break;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
break;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
}
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
},
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
getPercentage: function(win, total) {
return this.round(win == 0 ? 0 : (win / total) * 100);
},
@@ -125,108 +140,138 @@ export default {
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
</script>
<style lang="scss" scoped>
@import "../styles/global.scss";
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// @import "../styles/global.scss";
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
@import "../styles/variables.scss";
@import "../styles/media-queries.scss";
.inner-bought-container {
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
.total-ballots {
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
display: flex;
flex-direction: column;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
justify-content: center;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
align-items: center;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
}
.ballot-element {
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
width: 140px;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
height: 150px;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
margin: 20px 0;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
}
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
.bought-container {
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
margin-top: 2em;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
display: grid;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
grid-template-columns: repeat(4, 1fr);
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
column-gap: 2em;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
.number-container {
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
display: flex;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
align-items: flex-end;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
.ballot-element-local {
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
margin: 0;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
width: 100%;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
height: 100%;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
padding: .5em;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
& span:last-child {
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
padding-bottom: 5px;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
padding-left: 5px;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
&.green-ballot {
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
background-color: $light-green;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
}
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
&.blue-ballot {
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
background-color: $light-blue;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
}
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
&.yellow-ballot {
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
background-color: $light-yellow;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
}
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
&.red-ballot {
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
background-color: $light-red;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
}
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
}
}
.inner-bought-container {
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
}
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
.ballot-element {
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// width: 140px;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// height: 150px;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// margin: 20px 0;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
}
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
.number-container {
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// display: flex;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// align-items: flex-end;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// & span:last-child {
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// padding-bottom: 5px;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// padding-left: 5px;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// }
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
}
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
.inner-text-container {
display: flex;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
flex-direction: column;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
justify-content: center;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
align-items: center;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// display: flex;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// flex-direction: column;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// justify-content: center;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// align-items: center;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// TODO fix styling for displaying in columns
@include mobile {
& div {
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
padding: 0 5px;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
}
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// & div {
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// padding: 0 5px;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// }
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
}
}
.total-ballots {
width: 150px;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
height: 150px;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
margin: 20px 0;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// width: 150px;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// height: 150px;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// margin: 20px 0;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
}
.total-container {
align-items: flex-start;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// align-items: flex-start;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
}
@include mobile {
.total-container {
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
> div:nth-of-type(2) {
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
margin-top: auto;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
padding-bottom: 4px;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
padding-left: 5px;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
}
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
}
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// .total-container {
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// > div:nth-of-type(2) {
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// margin-top: auto;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// padding-bottom: 4px;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// padding-left: 5px;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// }
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// }
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
}
.bought-number-span {
display: inline-flex;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// display: inline-flex;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
}
.outer-bought {
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
@include mobile {
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
padding: 0 20px;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
}
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
}
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// .outer-bought {
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// @include mobile {
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// padding: 0 20px;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// }
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// }
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
.bought-container {
display: flex;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
flex-direction: row;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
flex-wrap: wrap;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
width: 100%;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
padding-bottom: 3rem;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
max-width: 1400px;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
margin: auto;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
justify-content: space-between;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
font-family: Arial;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// display: flex;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// flex-direction: row;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// flex-wrap: wrap;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// width: 100%;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// padding-bottom: 3rem;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// max-width: 1400px;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// margin: auto;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// justify-content: space-between;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// font-family: Arial;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
@include mobile {
padding-bottom: 0px;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// padding-bottom: 0px;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
}
}
.color-total,
.total {
font-size: 2rem;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
font-weight: bold;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// font-size: 2rem;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// font-weight: bold;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
}
.small {
font-weight: bold;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
font-size: 1.25rem;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
display: inline-block;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// font-weight: bold;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// font-size: 1.25rem;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// display: inline-block;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
}
@include mobile {
.bought-container {
flex-wrap: wrap;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
// flex-wrap: wrap;
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
}
}
</style>
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:37:47 +00:00 (Migrated from github.com)
Review

Ehhm isn't ballot renamed to raffle?

Ehhm isn't `ballot` renamed to `raffle`?
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
KevinMidboe commented 2020-11-03 08:41:05 +00:00 (Migrated from github.com)
Review

Goes for all instances of ballot.

Goes for all instances of `ballot`.
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed
Adrianht commented 2020-11-03 09:14:28 +00:00 (Migrated from github.com)
Review

Fixed

Fixed