Show a toast if the strike is validated

master
masterhc 1 year ago
parent ba92e00542
commit 74481a0ab5

@ -81,6 +81,10 @@ body
background-color: var(--card-color);
border-radius: 10px;
border: 1px solid #fffff042;
margin-bottom: 1vh;
}
.strike-info {
flex: 4;
}
.strike-info > h3 > span> img
{
@ -104,8 +108,9 @@ body
{
background-color: rgb(58, 23, 23);
}
.strike-info {
flex: 4;
.strike-info > h4
{
color:green
}
.actions {

@ -20,6 +20,9 @@
</h3>
<h3> With the reason: <%= strike.reason %> </h3>
<h5> Lasting until: <%=new Date(strike.expireAt).toDateString()%> </h5>
<%if(strike.validated){%>
<h4>Validated</h4>
<% } %>
</div>
<% if(!strike.validated){ %>
<div class="actions">

Loading…
Cancel
Save