Skip to content
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

Overflow broken #48

Open
pwall2222 opened this issue Oct 31, 2024 · 4 comments
Open

Overflow broken #48

pwall2222 opened this issue Oct 31, 2024 · 4 comments

Comments

@pwall2222
Copy link

pwall2222 commented Oct 31, 2024

I am using Legcord + Vencord (using Vencord to load the theme), and the overflows for people status is broken. I did a quick bodge (doesn't work 100% of the time) with:

[class^=peopleColumn_] {
    overflow-x: hidden !important;
}

(adding .container_c2739c to that selector would solve the issue but make the channel text cut out)

image

@Androser420
Copy link
Contributor

the reason text gets cut off is because keeping the overflow for the container visible actually fixes that

/* fix hidden text labels */

so to actually make that "work" you could probably do something like this:

.container_c2739c {
    padding-top: 10px;
    margin-top: -10px;
}

basically u add some padding to the top and move the whole thing up aswell with the same amount of pixels to give it some space to render

@Androser420
Copy link
Contributor

Androser420 commented Nov 3, 2024

oh btw I also noticed the names get a lot shorter too so u could fix that up if necessary

.discriminator_f3939d {
    display: none;
}

.hovered_f3939d .discriminator_f3939d {
    display: flex;
}

Androser420 referenced this issue in Androser420/sysmol24 Nov 7, 2024
@F-Joubert
Copy link

Would this be the same issue causing some part of the interface to hide the top 1 - 3 members in servers for me?

I'm assuming it's activity cards from discord or something from another plugin that isn't loading properly. Thought it might be member count so I turned that off but problem persists.

image

@F-Joubert
Copy link

Fixed with:

/* amount of spacing and padding */
	--spacing: 12px;

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants