Added mobile style fixes (#9741)

This commit is contained in:
Keith Holliday
2017-12-26 17:31:00 -06:00
committed by GitHub
parent a3bf329c44
commit d90d781740
14 changed files with 134 additions and 68 deletions

View File

@@ -1,7 +1,7 @@
<template lang="pug">
.container-fluid
.row
.col-md-6.offset-3
.col-12.col-md-6.offset-md-3
h1 {{ $t('frequentlyAskedQuestions') }}
.faq-question(v-for='(heading, index) in headings')
h2.accordion(@click='setActivePage(heading)') {{ $t(`faqQuestion${index}`) }}
@@ -14,6 +14,12 @@
.faq-question {
margin-bottom: 1em;
}
@media only screen and (max-width: 768px) {
.container-fluid {
margin: auto;
}
}
</style>
<script>