Skip to content

Commit

Permalink
Fixed system24 rounding
Browse files Browse the repository at this point in the history
  • Loading branch information
Androser420 committed Oct 26, 2024
1 parent b524a42 commit a214404
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions src/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,36 @@
content: 'server';
}

/* rounding fixes */
[class^="channelAppLauncher_"]>[class^="buttonContainer_"] {
&>[class^="button_"] {
transform: scale(0.5);
}

& [class^="contents"]>[class^="lottieIcon_"] {
transform: scale(2);
}
}

ul {
[class^='footer'] {
background: transparent
}

[class^='gradient'] {
background: var(--bg-overlay-app-frame, var(--background-tertiary))
}
}

[class^='userPanelInner_'] {
border-radius: var(--panel-roundness);
}

[class^='animatedContainer_'] {
border-top-left-radius: calc(var(--panel-roundness) /1.5);
border-top-right-radius: calc(var(--panel-roundness) /1.5);
}

/* misc changes for system24 */
.vc-spotify-time-left,
.vc-spotify-time-right {
Expand Down

1 comment on commit a214404

@Androser420
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.