|
|
|
|
|
by datene
1550 days ago
|
|
You might have an android device wider than 575px, this is the media query that's causing it: ```
@media (max-width: 575px)
h2 {
position: relative;
overflow-x: hidden;
}
``` overflow-x:hidden makes overflow-y:auto, which is scroll |
|