Skip to content

Commit

Permalink
fix: background colour
Browse files Browse the repository at this point in the history
  • Loading branch information
marikaris committed Jul 20, 2024
1 parent 16ad3c2 commit bb97f0a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
16 changes: 11 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Judo Score</title>
</head>
<body>
<div id="app"></div>
<div id="app" class="bg-primary-subtle"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>

<style>
#app {
height: 100vh;
}
</style>
6 changes: 3 additions & 3 deletions src/App.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<template>
<main>
<ScoreBoard/>
<ScoreBoard />
</main>
</template>

<script setup lang="ts">
import ScoreBoard from './components/ScoreBoard.vue';
import ScoreBoard from './components/ScoreBoard.vue'
</script>

<style>
Expand All @@ -15,4 +15,4 @@ import ScoreBoard from './components/ScoreBoard.vue';
.big {
font-size: 5rem;
}
</style>
</style>

0 comments on commit bb97f0a

Please sign in to comment.