mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-10-30 02:02:43 +00: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
45 lines
664 B
SCSS
45 lines
664 B
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
.page-header {
|
|
padding-bottom: $spacing-4;
|
|
padding-top: $spacing-20;
|
|
|
|
.level {
|
|
align-items: flex-end;
|
|
}
|
|
.level-left,
|
|
.level-right {
|
|
flex-grow: 1;
|
|
flex-shrink: 1;
|
|
|
|
@include until($mobile) {
|
|
margin-top: 0.5rem;
|
|
}
|
|
}
|
|
.level-right {
|
|
@include from($mobile) {
|
|
justify-content: flex-end;
|
|
}
|
|
}
|
|
|
|
.title {
|
|
margin-top: $spacing-36;
|
|
}
|
|
|
|
.title-with-icon {
|
|
display: flex;
|
|
}
|
|
|
|
.breadcrumb + .level .title {
|
|
margin-top: $spacing-20;
|
|
}
|
|
.title .icon {
|
|
height: auto;
|
|
vertical-align: -0.15em;
|
|
width: auto;
|
|
}
|
|
}
|