open-nomad/ui/app/styles/components/gutter-toggle.scss

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
423 B
SCSS
Raw Normal View History

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
.gutter-toggle {
display: none;
position: absolute;
left: 0;
padding: 1.25rem 0.7rem;
z-index: 1; // Make sure the toggle is on top of its siblings
height: 100%;
fill: desaturate(lighten($nomad-green, 20%), 30%);
cursor: pointer;
> svg {
width: 15px;
}
@media #{$mq-hidden-gutter} {
display: inline-block;
}
}