Fix: Modal buttons

Co-authored-by: David Ralph <me@davidcralph.co.uk>
This commit is contained in:
alexsparkes
2024-03-19 23:35:17 +00:00
parent 2136f558b9
commit 4af8733795
28 changed files with 226 additions and 130 deletions

View File

@@ -11,6 +11,15 @@
padding: 0 20px;
}
.btn-secondary {
@include modal-button(secondary);
display: inline;
margin-top: 0;
float: none !important;
padding: 0 20px;
}
.btn-navigation {
@include modal-button(standard);

View File

@@ -57,14 +57,42 @@
gap: 10px;
}
svg {
.timestamp {
display: flex;
flex-flow: row;
align-items: center;
gap: 5px;
font-size: 12px;
@include themed {
color: t($subColor);
}
}
.achievementTitle {
font-size: 18px;
font-weight: bold;
}
svg.trophy {
font-size: 20px !important;
@include themed {
background-image: t($slightGradient);
box-shadow: t($boxShadow);
}
padding: 15px;
border-radius: 100%;
}
svg.trophyLocked {
font-size: 20px !important;
@include themed {
background: t($modal-sidebarActive);
background-image: t($modal-sidebarActive);
box-shadow: t($boxShadow);
}
padding: 15px;
border-radius: 100%;
}
}
@@ -88,11 +116,6 @@
flex-flow: column;
gap: 2px;
span:first-child {
font-weight: bold;
font-size: 15px;
}
.subtitle {
font-size: 13px !important;
}