fix: styles
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Baoshuo Ren 2023-02-04 20:20:36 +08:00
parent c2791a911e
commit 5d8f194293
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A
2 changed files with 5 additions and 1 deletions

View File

@ -412,7 +412,7 @@ $pag = new Paginator($pag_config);
<?php foreach ($pag->get() as $idx => $row) : ?>
<div class="col">
<div class="card">
<img src="<?= $row['path'] ?>" class="card-img-top" height="200" style="object-fit: contain" loading="lazy" decoding="async">
<img src="<?= $row['path'] ?>" class="card-img-top object-fit-contain" height="200" loading="lazy" decoding="async">
<div class="card-footer bg-transparent small px-2">
<div class="d-flex flex-wrap justify-content-between">
<time><?= $row['upload_time'] ?></time>

View File

@ -241,6 +241,10 @@ h6,
/* Form */
form {
margin-bottom: 0;
}
form.form-horizontal {
margin-bottom: 8px;
}