Skip to content

Commit

Permalink
feat: add space between nav and title
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentHardouin committed May 7, 2024
1 parent cf37c17 commit 94ad9cd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/Game.vue
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ function toggleStop(event) {
<template>
<RulesModal />
<FinishModal :information="information" />
<div class="container">
<div class="container index-page">
<h1>{{ title }}</h1>
<p id="instruction" v-html="instruction" />
<div class="map">
Expand Down Expand Up @@ -148,6 +148,10 @@ function toggleStop(event) {
</template>

<style scoped>
.index-page {
padding-top: 0.5rem;
}
.stop-list-section {
margin-top: 1rem;
}
Expand Down

0 comments on commit 94ad9cd

Please sign in to comment.