tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

media-rules.scss (192B)


      1 $break-small: 320px;
      2 $break-large: 1200px;
      3 
      4 div {
      5  @media screen and (max-width: $break-small) {
      6    width: 100px;
      7  }
      8  @media screen and (min-width: $break-large) {
      9    width: 400px;
     10  }
     11 }