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-border: 5px dashed #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-background-color: #00a0e0;
|
||||
|
@ -25,6 +25,12 @@ const newQuote = () => useEngine().createQuote('something is going to happen')
|
||||
border: $quote-new-border;
|
||||
border-radius: 0 16px 0 0;
|
||||
cursor: pointer;
|
||||
|
||||
&:hover {
|
||||
background-color: $quote-new-hover-background-color;
|
||||
border: $quote-new-hover-border;
|
||||
color: $quote-new-hover-text-color;
|
||||
}
|
||||
}
|
||||
|
||||
&__new {
|
||||
|
Loading…
Reference in New Issue
Block a user