Fixed Share this page widget - Display icons only unchecked = broken

Russ

Well-known member
Affected version
2.1 Beta 5
Using 2.1 Beta 5, when you uncheck the Display icons only option it breaks the display:

191990

Looks like the new CSS introduced in the 2.1 series broke this portion.

Code:
.shareButtons-buttons {
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: repeat(auto-fill, 35px);
    justify-content: space-between;
}
 
Top Bottom