| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- .guide {
- position: relative;
- &:not(.floating-mode) {
- &.top {
- transform: translateY(-100%);
- }
-
- .bubble {
- --arrow-width: 14px;
- --arrow-height: 10px;
- --padding: 10px;
- --bottom-left: 20px;
-
- .bubble-layer {
- min-height: auto;
- min-width: auto;
- padding-right: 30px;
-
- .guide-close {
- position: absolute;
- right: 10px;
- top: 10px;
- // margin-top: 2px;
- font-size: 12px;
- }
- }
- }
-
- .guide-bubble {
- .default-msg {
- white-space: nowrap;
- }
- }
- }
- }
- .guide-floating {
- color: #fff;
- font-size: 14px;
- &.top {
- transform: translateY(-100%);
- }
- .bubble {
- --arrow-width: 14px;
- --arrow-height: 10px;
- --padding: 10px;
- --bottom-left: 20px;
- position: static;
- .bubble-layer {
- min-height: auto;
- min-width: auto;
- padding-right: 30px;
- .guide-close {
- position: absolute;
- right: 10px;
- top: 10px;
- // margin-top: 2px;
- font-size: 12px;
- }
- }
- }
- .guide-bubble {
- .default-msg {
- white-space: nowrap;
- }
- }
- }
|