tor-browser

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

components-h-split-box.css (501B)


      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 file,
      3 * You can obtain one at http://mozilla.org/MPL/2.0/. */
      4 
      5 /**
      6 * HSplitBox Component
      7 * Styles for React component at `devtools/client/shared/components/HSplitBox.js`
      8 */
      9 
     10 .h-split-box,
     11 .h-split-box-pane {
     12  overflow: auto;
     13  margin: 0;
     14  padding: 0;
     15  width: 100%;
     16  height: 100%;
     17 }
     18 
     19 .h-split-box {
     20  display: flex;
     21  flex-direction: row;
     22  flex: 1;
     23 }