feat: achievement improvements

- Added achievement notification
- Show locked achievements
- Fixed quote padding
- Fixed date picker layout

Co-authored-by: David Ralph <me@davidcralph.co.uk>
Co-authored-by: Isaac <contact@eartharoid.me>
This commit is contained in:
alexsparkes
2024-03-16 23:28:35 +00:00
parent 59357357bb
commit 86f64dfc98
9 changed files with 137 additions and 64 deletions

View File

@@ -51,6 +51,8 @@ input {
/* date picker */
&[type='date'] {
width: 260px;
display: flex;
flex-flow: column;
@include themed {
background: t($modal-sidebar);

View File

@@ -33,6 +33,12 @@
}
.achievements {
display: flex;
flex-flow: column;
gap: 15px;
}
.achievementsGrid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
grid-gap: 10px;