mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-30 19:11:09 +02: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
25 lines
426 B
SCSS
25 lines
426 B
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
.namespace-reminder {
|
|
color: $grey;
|
|
margin: 0 0 $spacing-14 0;
|
|
}
|
|
|
|
.console-reminder p.namespace-reminder {
|
|
color: $grey;
|
|
font-family: $family-monospace;
|
|
font-size: $size-8;
|
|
margin: $spacing-4 0 0;
|
|
opacity: 0.7;
|
|
position: absolute;
|
|
|
|
.tag {
|
|
background-color: $ui-gray-800;
|
|
color: $light-grey;
|
|
font-size: $size-9;
|
|
}
|
|
}
|