Moved some files around, improved how notifications are being requested, and improved activation and installation-flow of serviceworker

This commit is contained in:
Kasper Rynning-Tønnesen
2020-02-21 14:36:27 +01:00
parent ac1e73ee09
commit 8b1d86bd9b
8 changed files with 291 additions and 113 deletions

View File

@@ -1,7 +1,12 @@
<template>
<div class="inner-wine-container">
<div class="inner-wine-container" :class="{ 'big': fullscreen }">
<div class="left">
<img :src="wine.image" class="wine-image" :class="{ 'fullscreen': fullscreen }"/>
<!-- <img :src="wine.image" class="wine-image" :class="{ 'fullscreen': fullscreen }"/> -->
<img
src="https://images.vivino.com/thumbs/QRhTyEmKR8Wi_C1N2uqBWg_pb_x960.png"
class="wine-image"
:class="{ 'fullscreen': fullscreen }"
/>
</div>
<div class="right">
<h2>{{ wine.name }}</h2>
@@ -12,7 +17,7 @@
Vunnet av:
{{wine.winners.join(", ")}}
</span>
<div class="color-wins">
<div class="color-wins" :class="{ 'big': fullscreen }">
<span class="color-win blue">{{wine.blue == undefined ? 0 : wine.blue}}</span>
<span class="color-win red">{{wine.red == undefined ? 0 : wine.red}}</span>
<span class="color-win green">{{wine.green == undefined ? 0 : wine.green}}</span>
@@ -45,6 +50,7 @@ export default {
&.fullscreen {
@include desktop {
height: unset;
max-height: 65vh;
}
}
}
@@ -56,6 +62,10 @@ export default {
flex-wrap: wrap;
}
.color-wins.big {
width: unset;
}
span.color-win {
border: 2px solid transparent;
color: #333;
@@ -111,6 +121,10 @@ h3 {
font-family: Arial;
margin-bottom: 30px;
&.big {
align-items: center;
}
@include desktop {
justify-content: center;
}