Skip to content

Commit

Permalink
Merge pull request #6883 from thnaylor/fix/6882
Browse files Browse the repository at this point in the history
  • Loading branch information
yangwao authored Aug 23, 2023
2 parents dd41628 + 8e66332 commit 9b7a20b
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions components/CookieBanner.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,16 @@
</div>
<div class="bar ml-4 mr-4" />
<div class="action is-success">
<a @click="declineCookies">
<NeoButton variant="text" no-shadow @click.native="declineCookies">
{{ $t('cookies.decline') }}
</a>
<a class="has-text-weight-bold ml-3" @click="acceptCookies">
</NeoButton>
<NeoButton
variant="text"
no-shadow
class="has-text-weight-bold ml-3"
@click.native="acceptCookies">
{{ $t('cookies.accept') }}
</a>
</NeoButton>
</div>
</div>
</div>
Expand All @@ -28,6 +32,7 @@
</template>

<script lang="ts" setup>
import { NeoButton } from '@kodadot1/brick'
// import { useState } from 'vue-gtag-next'
// const { isEnabled } = useState()
Expand Down

0 comments on commit 9b7a20b

Please sign in to comment.