open-vault/ui/app/styles/components/global-flash.scss
Hamid Ghaf 27bb03bbc0
adding copyright header (#19555)
* adding copyright header

* fix fmt and a test
2023-03-15 09:00:52 -07:00

25 lines
420 B
SCSS

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
.global-flash {
bottom: 0;
left: $spacing-s;
margin: 10px;
max-width: $drawer-width;
position: fixed;
width: 95%;
z-index: 300;
.message {
box-shadow: $box-shadow-high;
.message-body {
overflow-wrap: break-word;
word-wrap: break-word;
word-break: break-word;
display: inline-flex;
}
}
}