github.com/hernad/nomad@v1.6.112/ui/app/styles/components/gutter-toggle.scss (about)

     1  /**
     2   * Copyright (c) HashiCorp, Inc.
     3   * SPDX-License-Identifier: MPL-2.0
     4   */
     5  
     6  .gutter-toggle {
     7    display: none;
     8  
     9    position: absolute;
    10    left: 0;
    11    padding: 1.25rem 0.7rem;
    12    z-index: 1; // Make sure the toggle is on top of its siblings
    13    height: 100%;
    14    fill: desaturate(lighten($nomad-green, 20%), 30%);
    15    cursor: pointer;
    16  
    17    > svg {
    18      width: 15px;
    19    }
    20  
    21    @media #{$mq-hidden-gutter} {
    22      display: inline-block;
    23    }
    24  }