Skip to content

Commit

Permalink
tiny fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Leozard committed Jul 3, 2021
1 parent f0fdb6e commit d24c319
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 6 deletions.
9 changes: 9 additions & 0 deletions lib/selectors/selectorPlaceholders.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4460,3 +4460,12 @@ pre {
.focused-3ZzkKr {
@extend %quickReactButtonFocused !optional;
}
.subscribeTooltipWrapper-1JoUuw {
@extend %subscribeTooltipWrapper !optional;
}
.subscribeTooltipHeader-Cf_Izr {
@extend %subscribeTooltipHeader !optional;
}
.subscribeTooltipText-3d3QxF-1JoUuw {
@extend %subscribeTooltipText !optional;
}
11 changes: 5 additions & 6 deletions src/general/button.scss
Original file line number Diff line number Diff line change
Expand Up @@ -44,17 +44,16 @@
}

// BUTTON INVERTED
%buttonInverted,
%buttonInvertedBrand,
%buttonInvertedGreen {
background: hsla(0, 0%, 100%, .1);
color: #fff;
background: #fff;
color: $main-color;
&:hover {
background: hsla(0, 0%, 100%, .2);
color: $main-color;
background: hsla(0, 0%, 100%, .95);
color: $hover-color;
}
&:disabled {
background: hsla(0, 0%, 100%, .1);
background: hsla(0, 0%, 100%, .3);
}
}

Expand Down
7 changes: 7 additions & 0 deletions src/general/tooltip.scss
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,11 @@
> %commandTooltipPointer {
border-top-color: rgba(0, 0, 0, .9);
}
}

%subscribeTooltipWrapper {
background-color: $main-color;
&:after {
border-bottom-color: var(--main-color);
}
}

0 comments on commit d24c319

Please sign in to comment.