K
K
Katsuro2019-03-04 20:05:19
css
Katsuro, 2019-03-04 20:05:19

Why is media not working in bootstrap?

The media query stops working after 768px, I don't understand what the problem is, maybe I missed something or made a mistake somewhere. Here is the site skillbets.ru

@media (min-width: 768px) and (max-width: 991px) {
  body{
    font-size: 16px;
  }
  /* Header */
  .header{
    &-menu{
      display: block;
      text-align: center;
      &-social{
        margin: 2em 0;
      }
    }
    &-content{
      &-line{
        img{
          display: none;
        }
        p{
          margin: 0;
        }
      }
      &-btn{
        img{
          left: 53%;
        }
        p{
          left: 60%;
        }
      }
    }
  }
}
@media (min-width: 576px) and (max-width: 767px){
  body{
    font-size: 15px;
  }
  /* Header */
  .header{
    &-menu{
      display: block;
      text-align: center;
      &-social{
        margin: 2em 0;
      }
    }
    &-content{
      &-btn{
        img{
          display: none;
        }
        p{
          display: none;
        }
      }
    }
  }
}
>
Working with Less

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Alex, 2019-03-04
@Kozack

Delete(min-width: 768px)

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question