github.com/thomasobenaus/nomad@v0.11.1/ui/app/styles/components/gutter-toggle.scss (about)

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