Files
AstralRinth/apps/theseus-gui/src/views/AboutView.vue
2024-07-03 11:05:58 -07:00

17 lines
242 B
Vue

<template>
<div class="about">
<h1>This is an about page</h1>
</div>
</template>
<style>
@media (min-width: 768px) {
.about {
max-width: 768px;
margin-left: auto;
margin-right: auto;
padding: 0 1rem;
}
}
</style>