Visual fixes

This commit is contained in:
Geometrically
2021-01-29 20:49:13 -07:00
parent 9d62931af9
commit 01703aff43
3 changed files with 92 additions and 77 deletions

View File

@@ -93,12 +93,9 @@
will be removed from our servers. This cannot be reversed, so be
careful!</span
>
<input
type="button"
class="button"
value="Delete Account"
@click="deleteAccount"
/>
<div type="button" class="button" @click="deleteAccount">
Delete Account
</div>
</label>
</section>
</DashboardPage>
@@ -257,5 +254,15 @@ label {
input[type='button']:hover {
cursor: pointer;
}
div,
a {
text-align: center;
height: fit-content;
flex: 1;
}
div:hover {
cursor: pointer;
}
}
</style>