very final fixes lol
This commit is contained in:
parent
fa7b92e535
commit
f38effcaa3
@ -25,7 +25,7 @@ if (Deno.args[0] === "prod") {
|
||||
}));
|
||||
else req.respondWith(r.toFetchResponse());
|
||||
}
|
||||
})();
|
||||
})().catch(console.error);
|
||||
}
|
||||
}
|
||||
else {
|
||||
|
@ -111,7 +111,7 @@ export default class Router {
|
||||
const r = await this.handle(RestRequest.fromMessage(req));
|
||||
if (r) req.respondWith(r.toFetchResponse());
|
||||
}
|
||||
})();
|
||||
})().catch(console.error);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -5,24 +5,32 @@
|
||||
box-shadow: .25rem .25rem 1rem -.5rem #000;
|
||||
padding: 1rem;
|
||||
box-sizing: border-box;
|
||||
display: inline-flex;
|
||||
display: inline-block;
|
||||
flex-direction: column;
|
||||
gap: 1rem;
|
||||
margin: 1rem;
|
||||
align-items: center;
|
||||
min-width: 15rem;
|
||||
|
||||
.image {
|
||||
cursor: pointer;
|
||||
height: 15rem;
|
||||
display: block;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.name, .author {
|
||||
text-align: left;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
word-break: break-all;
|
||||
}
|
||||
.name {
|
||||
margin: 1rem 0;
|
||||
}
|
||||
|
||||
.stats {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
|
||||
|
@ -3,11 +3,11 @@
|
||||
display: block;
|
||||
width: min(100%, 85rem);
|
||||
margin: auto;
|
||||
gap: 5rem;
|
||||
align-items: stretch;
|
||||
box-sizing: border-box;
|
||||
padding: 0 1rem;
|
||||
text-align: center;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
}
|
||||
@media screen and (width < 50rem) {
|
||||
.images {
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 948 B After Width: | Height: | Size: 4.2 KiB |
@ -6,6 +6,7 @@
|
||||
<base href="/">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
||||
<script>var $_url = "http://api.localhost/"</script>
|
||||
<script src="/http-url.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
Loading…
Reference in New Issue
Block a user