My window is using letterbox view (which I found on this website), and whenever window is resized, it's pixel size changes but ratio not. The problem is, I don't know how to get sprite position relative to the view not world position. Btw I fixed mouse position with this code:
sf::Vector2f mouse_position = getWindow()->mapPixelToCoords(sf::Mouse::getPosition(*getWindow()));
if (event->mouseMove.x >= playbutton->getPosition()->x && mouse_position.x <= playbutton->getPosition()->x + playbutton->getCurrentSize().width
&& mouse_position.y >= playbutton->getPosition()->y && mouse_position.y <= playbutton->getPosition()->y + playbutton->getCurrentSize().height)