-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Removing unroundings.css and using panel-roundness > 0px #42
Comments
hey there, I just made a little workaround for this that I'm currently using, it's not perfect but it should get the job done /* lazy rounding fix for Apps section */
[class^="channelAppLauncher_"]>[class^="buttonContainer_"] {
&>[class^="button_"] {
transform: scale(0.5);
}
& [class^="contents"]>[class^="lottieIcon_"] {
transform: scale(2);
}
}
/* server discovery */
ul {
[class^='footer'] {
background: transparent
}
[class^='gradient'] {
background: var(--bg-overlay-app-frame, var(--background-tertiary))
}
}
/* user profile */
[class^='userPanelInner_'] {
border-radius: var(--panel-roundness);
}
/* server banner */
[class^='animatedContainer_'] {
border-top-left-radius: calc(var(--panel-roundness) /1.5);
border-top-right-radius: calc(var(--panel-roundness) /1.5);
} let me know if it works for you! |
hmm im not really sure i can completely get rid it but u could probably change the border radius to something like: border-radius: calc(var(--panel-roundness) - var(--txt-pad) - 2px); this isnt reliable but atleast its mostly covered now |
hey, im so sorry for making you wait this long /* user profile */
[class^='userPanelInner_'] {
border-radius: calc(var(--panel-roundness) - var(--txt-pad) - 2px);
}
[class^='userPanelOuter_'] {
padding: 3px;
--txt-pad: 3px;
} this is all i can think of for now, hopefully someone looks over this and comes up with a proper solution, cheers! |
Hey again,
when removing the unrounding.css and thus using --panel-roundness some corners/edges start disappearing with increased px size.
Using a higher value makes it more noticable.
I really like the look of the rounded panels but the edges are pretty distracting.
If you find a fix that would be awesome!
--panel-roundness: 0px
--panel-roundness: 30px
Show User Profile looks fine, but funnily again the Message panel has no edges on the right side.
Bonus: Because I don't want to open a third issue (i am already so sorry), the embedded profile in the profile side panel is not getting rounded.
Otherwise thanks again! And I love this theme, the reason why I submit the issues so it can get even better. <3
The text was updated successfully, but these errors were encountered: