FriendsOfFlarum / socialprofile

Add custom social media pages to your user profile
MIT License
13 stars 8 forks source link

Large gaps in text #21

Closed ghost closed 2 years ago

ghost commented 3 years ago

This plugin creates large white spaces between texts in HTML text.

Hi why is in CSS this code:

.Pages-container {
    max-width: 820px;
    white-space: pre-wrap;
}

I fix it to this, and text is displayed normally

.Pages-container {
    max-width: 820px;
    white-space: normal !important;
}

I don't know if this is the right procedure, but so far it works for me.

dsevillamartin commented 2 years ago

Has nothing to do with this extension.