Skip to content

Commit

Permalink
feature add to manage api key #29 fix top
Browse files Browse the repository at this point in the history
  • Loading branch information
kynmh69 committed Mar 29, 2024
1 parent 664f1c5 commit 4783c11
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/key_management/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ npm install -D tailwindcss postcss autoprefixer
2. コンパイルをする

```bash
npx tailwindcss -i ./view/css/main.css -o ./view/css/main_output.css --watch
npx tailwindcss -i ./static/css/main.css -o ./static/css/main_output.css --watch
```
9 changes: 9 additions & 0 deletions src/key_management/static/css/main_output.css
Original file line number Diff line number Diff line change
Expand Up @@ -583,6 +583,11 @@ video {
margin-right: auto;
}

.my-8 {
margin-top: 2rem;
margin-bottom: 2rem;
}

.mt-8 {
margin-top: 2rem;
}
Expand Down Expand Up @@ -644,6 +649,10 @@ video {
padding-bottom: 0.5rem;
}

.text-center {
text-align: center;
}

.text-2xl {
font-size: 1.5rem;
line-height: 2rem;
Expand Down
9 changes: 8 additions & 1 deletion src/key_management/view/top.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ <h1 class="text-white text-2xl font-bold">API Key Manager</h1>
</div>

<!-- Table -->
<div class="container mx-auto mt-8">
<div class="container mx-auto my-8">
<table class="w-full border-collapse">
<thead>
<tr class="bg-gray-200">
Expand All @@ -47,6 +47,13 @@ <h1 class="text-white text-2xl font-bold">API Key Manager</h1>
</tbody>
</table>
</div>

<!-- フッター -->
<footer class="bg-gray-800 p-4">
<div class="container mx-auto text-center text-white">
<p>&copy; kynmh69 Inc. All rights reserved.</p>
</div>
</footer>
</body>

</html>

0 comments on commit 4783c11

Please sign in to comment.