c7d89f364d
* Begin refactoring CSS into component folders. Moved most components into layout/skin folders, left out a couple of ones I want to think about more. * Adjust grays based on recent Structure changes * Switch to fullscreen layout for lists and detail, left aligned forms (#4435) * Specifically use the 'actions_close' label, not just the :last-child (actions-group) * Replace some non-var-ed colours in vaults code skin, plus prefixing (black and white)
22 lines
371 B
SCSS
22 lines
371 B
SCSS
%flash-message {
|
|
display: flex;
|
|
position: relative;
|
|
z-index: 2;
|
|
justify-content: center;
|
|
margin: 0 15%;
|
|
}
|
|
%flash-message p {
|
|
top: -46px;
|
|
position: absolute;
|
|
padding: 9px 15px;
|
|
}
|
|
%flash-message p strong {
|
|
position: relative;
|
|
display: inline-block;
|
|
padding-left: 20px;
|
|
}
|
|
%flash-message p strong::before {
|
|
left: 0;
|
|
margin-top: -0.5em !important;
|
|
}
|