tor-browser

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

canvas-grid-reftest.css (269B)


      1 h1 {
      2  font-size: 20px;
      3 }
      4 
      5 .grid-container {
      6  display: grid;
      7  gap: 4px;
      8  grid-template-columns: repeat(var(--grid-width), max-content);
      9  font-size: 13px;
     10  text-align: center;
     11 }
     12 
     13 .grid-cell-content {
     14  display: block;
     15  margin: 0 auto;
     16  outline: 1px solid black;
     17 }