mirror of
https://github.com/hashicorp/vault.git
synced 2025-11-11 05:41:10 +01:00
* fix button padding * rename spacing variables using numerical values * fix toggle aligment * remove unused toggle classes * replace margin and padding with spacing vars * increase base font size * remove switch css, use toggle consistently * remaining margin/padding size vars to spacing pixels * add deprecated note, rever changes to size vars * decrease console size * remove function * adjust card size for small selectable cards * fix select to fit to content width * fix toolbar-scroller height * add changelog; * fix checkbox styling
35 lines
656 B
SCSS
35 lines
656 B
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
.env-banner {
|
|
align-self: center;
|
|
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;
|
|
margin-top: -20px;
|
|
margin-bottom: 6px;
|
|
|
|
.hs-icon {
|
|
margin: 0;
|
|
}
|
|
|
|
.notification {
|
|
background-color: transparent;
|
|
line-height: 1.66;
|
|
padding: 0 $spacing-12;
|
|
}
|
|
}
|
|
|
|
@keyframes env-banner-color-rotate {
|
|
100% {
|
|
filter: hue-rotate(105deg);
|
|
}
|
|
}
|