tor-browser

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

screenshots-preview.css (642B)


      1 /* This Source Code Form is subject to the terms of the Mozilla Public
      2 * License, v. 2.0. If a copy of the MPL was not distributed with this
      3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      4 
      5 :host {
      6  height: 100vh;
      7  width: 100vw;
      8  display: block;
      9 }
     10 
     11 .image-view {
     12  display: flex;
     13  flex-direction: column;
     14  height: 100vh;
     15 }
     16 
     17 .preview-buttons {
     18  display: flex;
     19  gap: var(--space-small);
     20  align-items: center;
     21  justify-content: flex-end;
     22  width: 98%;
     23  padding: var(--space-small) 0;
     24 }
     25 
     26 #preview-image-container {
     27  height: 100vh;
     28  overflow: auto;
     29  padding: 2%;
     30  padding-top: 0;
     31 }
     32 
     33 #preview-image {
     34  width: 100%;
     35 }