tor-browser

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

fake-group-align.css (464B)


      1 .group {
      2    inline-size: min-content;
      3 }
      4 
      5 .group-align-left {
      6    /* Only the one that matches the inline axis will apply */
      7    margin-bottom: auto;
      8    margin-right: auto;
      9 }
     10 
     11 .group-align-right {
     12    /* Only the one that matches the inline axis will apply */
     13    margin-top: auto;
     14    margin-left: auto;
     15 }
     16 
     17 .group-align-center {
     18    margin-inline: auto;
     19 }
     20 
     21 .group-align-start {
     22    margin-inline-end: auto;
     23 }
     24 
     25 .group-align-end {
     26    margin-inline-start: auto;
     27 }