diff --git a/src/styles/global.scss b/src/styles/global.scss index d4bbfce..e37a8c8 100644 --- a/src/styles/global.scss +++ b/src/styles/global.scss @@ -224,3 +224,25 @@ textarea { background-color: $light-red; } } + +@mixin raffle { + padding-bottom: 50px; + &::before, &::after { + content: ""; + position: absolute; + left: 0; + right: 0; + bottom: 25px; + height: 50px; + background: radial-gradient(closest-side, #fff, #fff 50%, transparent 50%); + background-size: 50px 50px; + background-position: 0 25px; + background-repeat: repeat-x; + } + &::after{ + background: radial-gradient(closest-side, transparent, transparent 50%, #fff 50%); + background-size: 50px 50px; + background-position: 25px -25px; + bottom: -25px + } +} \ No newline at end of file diff --git a/src/ui/TotalBought.vue b/src/ui/TotalBought.vue index 4cd254b..c4843f2 100644 --- a/src/ui/TotalBought.vue +++ b/src/ui/TotalBought.vue @@ -20,7 +20,7 @@ '-ballot ballot-element-local' " :key="color.name" - > + >
{{translate(color.name)}} vinnersjanse
@@ -144,6 +144,7 @@ export default {