mirror of
https://github.com/status-im/consul.git
synced 2025-03-01 13:50:41 +00:00
* 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)
24 lines
432 B
SCSS
24 lines
432 B
SCSS
%feedback-dialog-inline {
|
|
position: relative;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
%feedback-dialog-inline p::after {
|
|
content: '';
|
|
display: block;
|
|
position: absolute;
|
|
left: 50%;
|
|
margin-left: -5px;
|
|
bottom: -5px;
|
|
width: 10px;
|
|
height: 10px;
|
|
transform: rotate(45deg);
|
|
}
|
|
%feedback-dialog-inline p {
|
|
padding: 10px;
|
|
position: absolute;
|
|
bottom: 100%;
|
|
text-align: center;
|
|
white-space: nowrap; //temp
|
|
}
|