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.
24 lines
314 B
SCSS
24 lines
314 B
SCSS
.map-button {
|
|
margin: 10px;
|
|
}
|
|
|
|
.title h2 {
|
|
width: 80%;
|
|
max-width: 600px;
|
|
font-family: 'open-sans', sans-serif;
|
|
text-shadow: none;
|
|
font-size: 1.2em;
|
|
padding-bottom: 25px;
|
|
font-weight: 100;
|
|
}
|
|
|
|
@media (max-width: 670px) {
|
|
.title h1 {
|
|
font-size: 2em;
|
|
}
|
|
|
|
.title h2 {
|
|
font-size: 1em;
|
|
}
|
|
}
|