remove progress on build in console, add notification bell back
This commit is contained in:
@@ -7,7 +7,7 @@
|
|||||||
"test": "echo \"Error: no test specified\" && exit 1",
|
"test": "echo \"Error: no test specified\" && exit 1",
|
||||||
"start": "node server.js",
|
"start": "node server.js",
|
||||||
"dev": "cross-env NODE_ENV=development webpack-dev-server",
|
"dev": "cross-env NODE_ENV=development webpack-dev-server",
|
||||||
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules"
|
"build": "cross-env NODE_ENV=production webpack --hide-modules"
|
||||||
},
|
},
|
||||||
"author": "",
|
"author": "",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
|
|||||||
@@ -3,9 +3,19 @@
|
|||||||
|
|
||||||
<section class="top-container">
|
<section class="top-container">
|
||||||
|
|
||||||
<h1 class="want-to-win">
|
<div class="want-to-win">
|
||||||
Vil du også vinne?
|
<h1>
|
||||||
</h1>
|
Vil du også vinne?
|
||||||
|
</h1>
|
||||||
|
<img
|
||||||
|
src="/public/assets/images/notification.svg"
|
||||||
|
alt="Notification-bell"
|
||||||
|
@click="requestNotificationAccess"
|
||||||
|
class="notification-request-button"
|
||||||
|
role="button"
|
||||||
|
v-if="notificationAllowed"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<router-link to="/lottery/game" class="participate-button">
|
<router-link to="/lottery/game" class="participate-button">
|
||||||
<i class="icon icon--arrow-right"></i>
|
<i class="icon icon--arrow-right"></i>
|
||||||
@@ -145,16 +155,26 @@ export default {
|
|||||||
.want-to-win {
|
.want-to-win {
|
||||||
grid-row: 2 / 4;
|
grid-row: 2 / 4;
|
||||||
grid-column: 2 / -1;
|
grid-column: 2 / -1;
|
||||||
font-size: 2em;
|
display: flex;
|
||||||
font-weight: 400;
|
|
||||||
|
|
||||||
|
h1{
|
||||||
|
font-size: 2em;
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
|
||||||
@include tablet {
|
@include tablet {
|
||||||
font-size: 3em;
|
h1{
|
||||||
|
font-size: 3em;
|
||||||
|
}
|
||||||
grid-row: 2 / 4;
|
grid-row: 2 / 4;
|
||||||
grid-column: 3 / -3;
|
grid-column: 3 / -3;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.notification-request-button{
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
.participate-button {
|
.participate-button {
|
||||||
grid-row: 4 / 6;
|
grid-row: 4 / 6;
|
||||||
grid-column: 2 / -1;
|
grid-column: 2 / -1;
|
||||||
|
|||||||
Reference in New Issue
Block a user