that's all the API create routes! + some admin UI

Signed-off-by: ari melody <ari@arimelody.me>
This commit is contained in:
ari melody 2024-08-03 15:02:01 +01:00
parent 9329aa9f60
commit 494b29def3
11 changed files with 193 additions and 19 deletions

View file

@ -3,7 +3,7 @@
body {
width: 100%;
height: 100vh;
height: calc(100vh - 1em);
margin: 0;
padding: 0;
@ -76,6 +76,31 @@ a:hover {
margin: 0;
}
.card-title {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
}
.create-btn {
background: #c4ff6a;
padding: .5em .8em;
border-radius: .5em;
border: 1px solid #84b141;
text-decoration: none;
}
.create-btn:hover {
background: #fff;
border-color: #d0d0d0;
text-decoration: inherit;
}
.create-btn:active {
background: #d0d0d0;
border-color: #808080;
text-decoration: inherit;
}
.release {
margin-bottom: 1em;
padding: 1em;