Centered key management on page.

This commit is contained in:
DebaucheryLibrarian 2024-08-31 05:04:14 +02:00
parent a16d17399b
commit 7c59479f29
1 changed files with 85 additions and 75 deletions

View File

@ -1,5 +1,6 @@
<template>
<div class="page">
<div class="manager">
<div class="keys-header">
<h2 class="heading">API keys</h2>
@ -91,6 +92,7 @@
</code>
</div>
</div>
</div>
</template>
<script setup>
@ -147,7 +149,15 @@ function copyKey(event) {
<style scoped>
.page {
display: flex;
flex-grow: 1;
justify-content: center;
}
.manager {
width: 1200px;
max-width: 100%;
box-sizing: border-box;
padding: 1rem;
}