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
|
|
}
|