Move inline css style to stylesheet

This commit is contained in:
Daniel Markstedt 2023-11-08 12:44:18 +09:00
parent f2686dd742
commit 630678ceda
3 changed files with 6 additions and 2 deletions

View File

@ -97,6 +97,10 @@ div.flash div.info {
background-color: #0d6efd;
}
div.flash > div a {
display: none;
}
td.inactive {
text-align: center;
background-color: tan;

View File

@ -545,7 +545,7 @@ div.flash > div {
}
div.flash > div a {
display: inline-block !important;
display: inline-block;
padding: 0.25rem 0.75rem;
margin-left: auto;
color: #fff;

View File

@ -95,7 +95,7 @@
{% else %}
<div>{{ message }}</div>
{% endif %}
<a style="display: none;" href="/"></a>
<a href="/"></a>
</div>
{% endfor %}
{% endif %}