Browser Resize Problems - FCC Calculator

Need some help here. I’m trying to figure out why when i resize the browser window or look at the calculator on a small device it won’t allow me to scroll to see the entire image. Any ideas?
FCC Calculator

1 Like

pretty sure that’s caused by the position: fixed on .button-container

I’d recommend looking into flexbox for that sort of layout thing where you’re trying to center it, that’s what I normally use for this sort of thing… here’s an article that might be helpful https://philipwalton.github.io/solved-by-flexbox/demos/vertical-centering/

the position: fixed was definitely the problem. thanks for pointing me in the direction of the flexbox stuff. your calculator looks awesome. I was able to find a simple solution by using this example