vault/ui/app/styles/components/features-selection.scss
claire bontempo 7f03393630
UI: Increase base font size (#23994)
* 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
2023-11-13 21:29:39 +00:00

61 lines
919 B
SCSS

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: BUSL-1.1
*/
.feature-header {
font-size: $size-6;
font-weight: $font-weight-semibold;
color: $grey;
}
.access-information {
display: flex;
padding: $spacing-12 0px;
font-size: $size-8;
}
.feature-box {
box-shadow: $box-shadow;
border-radius: $radius;
padding: $spacing-12;
margin: $spacing-12 0;
&.is-active {
box-shadow: 0 0 0 1px $grey-light;
}
&.is-disabled {
background-color: $ui-gray-010;
color: $ui-gray-300;
}
}
.feature-box label {
font-weight: $font-weight-semibold;
padding-left: $spacing-8;
&::before {
top: 3px;
}
&::after {
top: 5px;
}
}
.feature-steps {
font-size: $size-8;
color: $grey;
line-height: 1.5;
margin-left: $spacing-24;
margin-top: $spacing-8;
li::before {
// bullet
content: '\2022';
position: relative;
right: $size-11;
}
}