FSWebDevBook / speedscore-dev

This the author's sandbox repo for the SpeedScore personal speedgolf app developed in the book.
0 stars 0 forks source link

Should text containers be flexible to longer text/ text wrapping? #7

Open anevins12 opened 3 years ago

anevins12 commented 3 years ago

Should text containers like the sidebar allow the scenario of text wrapping?

Some people set preferences of font size and font styles like letter spacing, word spacing and line height on their devices to help them read text easier. If the elements that contain text are too rigid that text could become obscurred or cut-off when text styles are modified.

dfd6486f-09ef-48c5-8f43-f0002fcfb1df

chundhau commented 3 years ago

@anevins12: Great point! I think I can fix the issue you identify through tweaking the CSS style for the .sidemenu-userID class like so:

white-space: normal;

Is this what you had in mind?

anevins12 commented 3 years ago

Looks good to me