Refactored multiple components to improve responsive design, ensuring better usability on smaller screens. Standardized class names for clarity and consistency, and adjusted layouts and styles to enhance overall alignment and accessibility.
22 lines
283 B
SCSS
22 lines
283 B
SCSS
main ul {
|
|
font-family: opensans, sans-serif;
|
|
text-align: left;
|
|
}
|
|
|
|
main li {
|
|
margin-left: 30px;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.inlineIcons {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
@media (max-width: 690px) {
|
|
.leadMyPet {
|
|
height: 70px;
|
|
}
|
|
}
|