Game 'start button' getting covered by footer(in mobile portrait mode)
These solutions may resolve issue
- Making the footer's position attribute to
position : relative (instead of fixed),
OR
- Making footer's position as
position: absolute , But If content doesn't fill screen, Make use of Flex to entire layout by wrapping and make give the main container flex : 1 to fill the space between header and footer pushing footer to bottom.
OR
- Make a different view for mobile portrait mode (might be by media query).
Game 'start button' getting covered by footer(in mobile portrait mode)
These solutions may resolve issue
position : relative(instead of fixed),OR
position: absolute, But If content doesn't fill screen, Make use of Flex to entire layout by wrapping and make give the main containerflex : 1to fill the space between header and footer pushing footer to bottom.OR