2018-01-13 20:12:17 +00:00
|
|
|
<SettingsNav :page :label/>
|
2018-01-09 01:44:29 +00:00
|
|
|
|
|
|
|
<div class="settings">
|
2018-01-13 02:57:50 +00:00
|
|
|
<FreeTextLayout>
|
|
|
|
<slot></slot>
|
|
|
|
</FreeTextLayout>
|
2018-01-09 01:44:29 +00:00
|
|
|
</div>
|
2018-01-13 18:53:25 +00:00
|
|
|
<style>
|
|
|
|
.settings {
|
2018-01-16 05:58:31 +00:00
|
|
|
margin: 20px;
|
2018-01-13 18:53:25 +00:00
|
|
|
}
|
|
|
|
:global(.settings .free-text h1) {
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
2018-01-13 22:19:51 +00:00
|
|
|
:global(.settings .free-text h2) {
|
|
|
|
margin: 20px 0 10px;
|
|
|
|
}
|
2018-01-31 17:06:06 +00:00
|
|
|
@media (max-width: 767px) {
|
|
|
|
.settings {
|
|
|
|
margin: 20px 10px;
|
|
|
|
}
|
|
|
|
}
|
2018-01-13 18:53:25 +00:00
|
|
|
</style>
|
2018-01-09 01:44:29 +00:00
|
|
|
<script>
|
|
|
|
import SettingsNav from './SettingsNav.html';
|
2018-01-13 02:57:50 +00:00
|
|
|
import FreeTextLayout from '../../_components/FreeTextLayout'
|
2018-01-09 01:44:29 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
2018-01-13 02:57:50 +00:00
|
|
|
FreeTextLayout,
|
2018-01-09 01:44:29 +00:00
|
|
|
SettingsNav
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|