change element naming to include main and header

This commit is contained in:
Adrian Thompson
2020-11-02 15:11:34 +01:00
parent 8758752b26
commit 58b91e67f9
2 changed files with 4 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
<template> <template>
<div class="main-container"> <main class="main-container">
<section class="top-container"> <section class="top-container">
@@ -52,7 +52,7 @@
<Countdown :hardEnable="hardStart" @countdown="changeEnabled" /> <Countdown :hardEnable="hardStart" @countdown="changeEnabled" />
</div> </main>
</template> </template>
<script> <script>

View File

@@ -1,5 +1,5 @@
<template> <template>
<div class="top-banner"> <header class="top-banner">
<!-- Mobile --> <!-- Mobile -->
<router-link to="/" class="company-logo"> <router-link to="/" class="company-logo">
<img src="/public/assets/images/knowit.svg" alt="knowit logo" /> <img src="/public/assets/images/knowit.svg" alt="knowit logo" />
@@ -26,7 +26,7 @@
</h2> </h2>
<h2 v-if="twoMinutesLeft || tenMinutesOver">Lotteriet er i gang!</h2> <h2 v-if="twoMinutesLeft || tenMinutesOver">Lotteriet er i gang!</h2>
</div> </div>
</div> </header>
</template> </template>
<script> <script>