pinafore/routes/settings/_components/SettingsLayout.html

26 lines
458 B
HTML
Raw Normal View History

2018-01-13 21:12:17 +01:00
<SettingsNav :page :label/>
2018-01-09 02:44:29 +01:00
<div class="settings">
2018-01-13 03:57:50 +01:00
<FreeTextLayout>
<slot></slot>
</FreeTextLayout>
2018-01-09 02:44:29 +01:00
</div>
2018-01-13 19:53:25 +01:00
<style>
.settings {
margin-top: 20px;
}
:global(.settings .free-text h1) {
margin-bottom: 30px;
}
</style>
2018-01-09 02:44:29 +01:00
<script>
import SettingsNav from './SettingsNav.html';
2018-01-13 03:57:50 +01:00
import FreeTextLayout from '../../_components/FreeTextLayout'
2018-01-09 02:44:29 +01:00
export default {
components: {
2018-01-13 03:57:50 +01:00
FreeTextLayout,
2018-01-09 02:44:29 +01:00
SettingsNav
}
};
</script>