mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 02:30:57 +08:00
45f93ae75d
* UX: Adjust size of svg arrow * UX: Refactor & style edits
38 lines
691 B
SCSS
38 lines
691 B
SCSS
.onboarding-popup-container {
|
|
min-width: 300px;
|
|
padding: 0.5em;
|
|
text-align: left;
|
|
|
|
.onboarding-popup-title {
|
|
font-size: $font-up-2;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.onboarding-popup-content {
|
|
margin-top: 0.25em;
|
|
}
|
|
|
|
.onboarding-popup-buttons {
|
|
margin-top: 1em;
|
|
}
|
|
}
|
|
|
|
.tippy-box[data-theme~="d-onboarding"][data-placement^="left"]
|
|
> .tippy-svg-arrow
|
|
> svg {
|
|
left: 11px;
|
|
}
|
|
|
|
.tippy-box[data-theme~="d-onboarding"][data-placement^="bottom"]
|
|
> .tippy-svg-arrow
|
|
> svg {
|
|
top: -13px;
|
|
left: -1px;
|
|
}
|
|
|
|
.tippy-box[data-theme~="d-onboarding"] > .tippy-svg-arrow:after,
|
|
.tippy-box[data-theme~="d-onboarding"] > .tippy-svg-arrow > svg {
|
|
width: 18px;
|
|
height: 18px;
|
|
}
|