Open
Description
Summary
Update mobile footer
Impacted URL
https://dashboard.test.keep.network/
Steps to reproduce
- Visit Keep Dashboard on mobile or Chrome (you can follow these steps)
- Scroll to the bottom of the page to find footer
Proposed Change Description
- Footer does not meet minimum font size (see CSS suggested changes below)
- Footer is unreadable on mobile so there is room for UX improvement
Proposed Change Figma, Screenshot or Video
- For reference to the following points, please consult this Figma link.
- Change the following H5 to the following CSS
.h5 {
font-family: Work Sans;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 24px;
}
- Add the class
mobile-footer-signature
to parent div element of the signature. To change the footer's signature add the following CSS
@media screen and (mobile breakpoint) {
mobile-footer-signature {
text-align: left;
width: 100%;
font-size: 12px;
line-height: 16px;
}
}
- Add the class
mobile-footer-svg
to the SVG html tag. In order to change the footer's SVG (for the Keep icon) add following CSS
@media screen and (mobile breakpoint) {
.mobile-footer-svg {
align-self: start;
}
}