mirror of
https://github.com/hashicorp/vault.git
synced 2025-09-09 16:01:10 +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
35 lines
481 B
SCSS
35 lines
481 B
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
.menu {
|
|
font-size: $size-6;
|
|
}
|
|
|
|
.menu a {
|
|
display: block;
|
|
padding: $spacing-8 $spacing-10;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.menu-label {
|
|
letter-spacing: 0.1em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.menu-list {
|
|
line-height: 1.25;
|
|
}
|
|
|
|
.column .menu-list a {
|
|
border-radius: 0;
|
|
border-right: 0 solid transparent;
|
|
font-weight: $font-weight-semibold;
|
|
|
|
&:hover,
|
|
&.is-active {
|
|
color: $blue;
|
|
}
|
|
}
|