mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-31 03:21:11 +02:00
* Create app-footer component with tests * glimmerize vault route + controller * Add dev mode badge to new footer * Fix version on dashboard * update app-footer tests * update version title component * Handle case for chroot namespace fail on health check * cleanup * fix ent tests * add missing headers * extra version fetch on login success, clear version on logout and seal * Add coverage for clearing version on seal * rename isOSS to isCommunity * remove is-version helper * test version in footer on unseal flow * fix enterprise test * VAULT-21399 test coverage * VAULT-21400 test coverage
33 lines
609 B
SCSS
33 lines
609 B
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
.env-banner {
|
|
font-size: 0.8rem;
|
|
border-radius: 3rem;
|
|
background: linear-gradient(
|
|
135deg,
|
|
$blue,
|
|
hsl(271, 100%, 71%)
|
|
); // only use case for purple in the app. define here instead of utils/color_var
|
|
animation: env-banner-color-rotate 8s infinite linear alternate;
|
|
color: $white;
|
|
|
|
.hs-icon {
|
|
margin: 0;
|
|
}
|
|
|
|
.notification {
|
|
background-color: transparent;
|
|
line-height: 2;
|
|
padding: 0 $spacing-12;
|
|
}
|
|
}
|
|
|
|
@keyframes env-banner-color-rotate {
|
|
100% {
|
|
filter: hue-rotate(105deg);
|
|
}
|
|
}
|