1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-19 13:19:44 +02:00

feat: Add button to delete all pending notifications (#993)

This commit is contained in:
Hannes 2025-01-17 16:54:31 +01:00 committed by GitHub
parent 871ae8f182
commit 2d390c4e7e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
31 changed files with 59 additions and 0 deletions

View file

@ -62,4 +62,19 @@
border-radius: 3px;
}
}
.deleteAllButton {
background: transparent;
box-shadow: none;
transition: background 0.3s ease;
display: block;
margin: 0 auto;
padding: 0.5em 1em;
font-size: 0.875em;
&:hover {
background: #e9e9e9;
}
}
}