mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-30 19:11:09 +02:00
* Move global-flash to HDS-specified area * Add flash-toast component * use flash toast for flash messages * Use spacing vars * Remove unnecessary key * Cleanup + tests * Remove nondeterministic build warning * add changelog * I wish this was automatic
15 lines
227 B
SCSS
15 lines
227 B
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
.global-flash {
|
|
bottom: $spacing-32;
|
|
right: $spacing-24;
|
|
margin: 10px;
|
|
max-width: 360px;
|
|
position: fixed;
|
|
width: 95%;
|
|
z-index: 300;
|
|
}
|