updates rules page

This commit is contained in:
2023-04-24 13:40:59 +10:00
parent bb4543bc65
commit ef4061b96c
2 changed files with 16 additions and 12 deletions

View File

@@ -55,6 +55,7 @@ const tabGroups = [
[ [
{ title: "Contact", to: "/contact" }, { title: "Contact", to: "/contact" },
{ title: "Code of Conduct", to: "/code-of-conduct" }, { title: "Code of Conduct", to: "/code-of-conduct" },
{ title: "Rules", to: "/rules" },
{ title: "Terms and Conditions", to: "/terms-and-conditions" }, { title: "Terms and Conditions", to: "/terms-and-conditions" },
{ title: "Privacy", to: "/privacy" }, { title: "Privacy", to: "/privacy" },
], ],

View File

@@ -1,7 +1,7 @@
<template> <template>
<SMPage class="sm-page-rules"> <SMMastHead title="Rules" />
<template #container> <SMContainer narrow>
<h1>Rules</h1> <template #inner>
<p> <p>
We want to make sure everyone has fun and stays safe while using We want to make sure everyone has fun and stays safe while using
our platforms and services. That's why we have some rules to our platforms and services. That's why we have some rules to
@@ -51,7 +51,7 @@
<li><strong>Don't bully or be mean to others.</strong></li> <li><strong>Don't bully or be mean to others.</strong></li>
</ul> </ul>
<h2>Discord Server</h2> <h3>Discord Server</h3>
<ul> <ul>
<li> <li>
Please follow Discord's Please follow Discord's
@@ -59,7 +59,7 @@
</li> </li>
</ul> </ul>
<h2>Minecraft</h2> <h3>Minecraft</h3>
<ul> <ul>
<li>Don't beg for things from others.</li> <li>Don't beg for things from others.</li>
<li>Use must use a Microsoft account to play on the server.</li> <li>Use must use a Microsoft account to play on the server.</li>
@@ -73,18 +73,21 @@
</li> </li>
</ul> </ul>
</template> </template>
</SMPage> </SMContainer>
</template> </template>
<script setup lang="ts"></script> <script setup lang="ts">
import SMMastHead from "../components/SMMastHead.vue";
</script>
<style lang="scss"> <style lang="scss">
.sm-page-rules { .page-rules {
h2 { h3 {
margin-bottom: 0.5rem; margin-top: 60px;
} }
li {
margin-bottom: 0.5rem; h4 {
margin-top: 30px;
} }
} }
</style> </style>