Страница не прокручивается в мобильной версии - PullRequest
0 голосов
/ 08 мая 2020

Надеюсь, вы хорошо себя чувствуете!

Кажется, я не могу понять, почему страница моего небольшого приложения для страниц не может прокручиваться вниз, когда достигает точки прерывания мультимедиа для мобильных устройств.

Вот ссылка на ручку

https://codepen.io/tiapnn/full/ExVQPzM

Вот моя CSS

body {
  background-color: darksalmon;
  font-family: 'Sigmar One', cursive;
  overflow-y: scroll
}

#pomodoro-container {
    position: fixed;
    top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 550px;
  height: 420px;
  border-radius: 10px;  
  background-color: white;

}

span {
  font-size: xx-large;
  font-family: 'Montserrat Subrayada', sans-serif;
}

header {
  font-size: 45px;
  font-weight: bolder;
  text-align: center;

}

#tomato {
  background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcTTDnWL8S2wxKpTNnFueFEEURgwq5QuF6jJzWQYbV8YUnVJfh-I&usqp=CAU);
  height: 300px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  text-align: center;
}

#timer {
  margin: auto;
  display: inline-block;
}

i {
font-size: x-large;
text-align: center;
}

.right-div {
  margin: auto;
  display: inline-block;
  text-align: center;  
}

#timer-label {
  font-family: 'Sigmar One', cursive;
  font-size: 40px;  
  color: white;
}

#time-left {
  font-size: 60px;
  color: white;
}

.lowerI {
  color: white;
  font-size: xx-large;
}


@media screen and (max-width: 575px) {  

  #pomodoro-container {
    height: auto;
    width: 90%;
    top: 10%;
    transform: translate(-50%, 0%);

  }

  .right-div {
    padding: 35px;
  }

  header {
    font-size: 40px;
  }


}

Как сделать он прокручивается?

Ура, Маттиа

PS: Нет, у меня нет переполнения: скрыто в моем css ......

1 Ответ

0 голосов
/ 08 мая 2020

Ваша проблема в вашей строке.

pomodoro-container {

position: fixed;

удалите его:)

...