Skip to content

Commit

Permalink
fix(layouts/ccip): apply responsive style
Browse files Browse the repository at this point in the history
  • Loading branch information
josix committed Aug 26, 2023
1 parent 7dc0470 commit 559f807
Showing 1 changed file with 24 additions and 6 deletions.
30 changes: 24 additions & 6 deletions layouts/ccip.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,37 @@
<div class="default-layout">
<div class="default-layout__body">
<Nuxt />
<core-footer />
</div>
</div>
</template>

<script>
export default {
components: {},
data() {
return {}
},
head() {
return {}
return {
meta: [
{ charset: 'utf-8' },
{
name: 'viewport',
content: 'width=device-width, initial-scale=1',
},
],
link: [
{
rel: 'preconnect',
href: 'https://fonts.googleapis.com',
},
{
rel: 'preconnect',
href: 'https://fonts.gstatic.com',
crossorigin: 'anonymous',
},
{
rel: 'stylesheet',
href: 'https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@400;500;600;700;900&family=Source+Sans+Pro:wght@400;600;700;900&display=swap',
},
],
}
},
}
</script>
Expand Down

0 comments on commit 559f807

Please sign in to comment.