vault/ui/app/styles/components/env-banner.scss
Hamid Ghaf e55c18ed12
adding copyright header (#19555)
* adding copyright header

* fix fmt and a test
2023-03-15 09:00:52 -07:00

30 lines
525 B
SCSS

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
.env-banner {
align-self: center;
border-radius: 3rem;
background: linear-gradient(135deg, $blue, $purple);
animation: env-banner-color-rotate 8s infinite linear alternate;
color: $white;
margin-top: -20px;
.hs-icon {
margin: 0;
}
.notification {
background-color: transparent;
line-height: 1.66;
padding: 0 $spacing-s;
}
}
@keyframes env-banner-color-rotate {
100% {
filter: hue-rotate(105deg);
}
}