Integrate TrueAchievements

This commit is contained in:
redphx
2024-09-03 16:56:58 +07:00
parent 4b02fec8ac
commit a6e358479a
22 changed files with 344 additions and 71 deletions

View File

@@ -1,11 +1,19 @@
.bx-guide-home-buttons[data-is-playing="true"] {
button[data-state='normal'] {
display: none;
.bx-guide-home-buttons {
> div {
display: flex;
flex-direction: row;
gap: 12px;
}
}
.bx-guide-home-buttons[data-is-playing="false"] {
button[data-state='playing'] {
display: none;
&[data-is-playing="true"] {
button[data-state='normal'] {
display: none;
}
}
&[data-is-playing="false"] {
button[data-state='playing'] {
display: none;
}
}
}