1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-01-25 13:09:19 +01:00

29 lines
520 B
HTML
Raw Normal View History

2018-01-13 12:12:17 -08:00
<SettingsNav :page :label/>
2018-01-08 17:44:29 -08:00
<div class="settings">
2018-01-12 18:57:50 -08:00
<FreeTextLayout>
<slot></slot>
</FreeTextLayout>
2018-01-08 17:44:29 -08:00
</div>
2018-01-13 10:53:25 -08:00
<style>
.settings {
2018-01-15 21:58:31 -08:00
margin: 20px;
2018-01-13 10:53:25 -08:00
}
:global(.settings .free-text h1) {
margin-bottom: 30px;
}
2018-01-13 14:19:51 -08:00
:global(.settings .free-text h2) {
margin: 20px 0 10px;
}
2018-01-13 10:53:25 -08:00
</style>
2018-01-08 17:44:29 -08:00
<script>
import SettingsNav from './SettingsNav.html';
2018-01-12 18:57:50 -08:00
import FreeTextLayout from '../../_components/FreeTextLayout'
2018-01-08 17:44:29 -08:00
export default {
components: {
2018-01-12 18:57:50 -08:00
FreeTextLayout,
2018-01-08 17:44:29 -08:00
SettingsNav
}
};
</script>