feat: add hover effect to QuoteCardNew
This commit is contained in:
parent
f5ed80feb5
commit
fba11d6855
@ -48,6 +48,9 @@ $quote-text-color: #384048;
|
|||||||
$quote-new-background-color: none;
|
$quote-new-background-color: none;
|
||||||
$quote-new-border: 5px dashed #ffffff;
|
$quote-new-border: 5px dashed #ffffff;
|
||||||
$quote-new-text-color: #ffffff;
|
$quote-new-text-color: #ffffff;
|
||||||
|
$quote-new-hover-background-color: lighten($background-primary-color, 10%);
|
||||||
|
$quote-new-hover-border: $quote-new-border;
|
||||||
|
$quote-new-hover-text-color: $quote-new-text-color;
|
||||||
|
|
||||||
// Quote Button
|
// Quote Button
|
||||||
$quote-button-background-color: #00a0e0;
|
$quote-button-background-color: #00a0e0;
|
||||||
|
@ -25,6 +25,12 @@ const newQuote = () => useEngine().createQuote('something is going to happen')
|
|||||||
border: $quote-new-border;
|
border: $quote-new-border;
|
||||||
border-radius: 0 16px 0 0;
|
border-radius: 0 16px 0 0;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background-color: $quote-new-hover-background-color;
|
||||||
|
border: $quote-new-hover-border;
|
||||||
|
color: $quote-new-hover-text-color;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&__new {
|
&__new {
|
||||||
|
Loading…
Reference in New Issue
Block a user