pinafore/routes/_components/settings/SettingsLayout.html

34 lines
601 B
HTML
Raw Normal View History

<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>
2018-04-20 04:38:01 +00:00
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
}
2018-04-20 04:38:01 +00:00
}
2018-01-09 01:44:29 +00:00
</script>