DiscordStyles / MinimalCord

Changes Discord enough to give it a fresh feel while also making it darker. Supports both Light and Dark themes.
MIT License
66 stars 53 forks source link

PFP decorations off centered. #34

Open gustish opened 1 year ago

gustish commented 1 year ago

The latest avatar decorations seem to be off centered a bit, not that biggest deal but so you know.

image

LeviSnoot commented 8 months ago

Not read up enough to contribute directly to the project but here's the CSS snippet I used to fix it:

.avatarDecoration__14b3c {
    left: calc((9px) - (var(--custom-message-avatar-decoration-size) - var(--custom-message-avatar-size))/2) !important;
    margin-top: calc(2px - var(--custom-message-spacing-vertical-container-cozy) - (var(--custom-message-avatar-decoration-size) - var(--custom-message-avatar-size))/2) !important;
}