Introduced mobile and medium responsiveness in stylesheets for better layout on smaller screens. Adjusted FAQ script to properly remove duplicate event listeners and ensure functionality remains smooth on initialization.
24 lines
311 B
SCSS
24 lines
311 B
SCSS
@media (max-width: 479px) {
|
|
body{
|
|
|
|
.md-grid {
|
|
padding: 2rem;
|
|
}
|
|
.md-grid .md-content,
|
|
.md-footer-container,
|
|
.md-footer-custom-links{
|
|
padding: 1rem;
|
|
}
|
|
|
|
.md-typeset h1,
|
|
h1 {
|
|
font-size: 3rem;
|
|
}
|
|
|
|
.md-typeset h2,
|
|
h2 {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
}
|
|
} |