mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 07:38:07 -05:00
Fix sass-lint
This commit is contained in:
parent
24b456873b
commit
a3f1ccc132
1 changed files with 7 additions and 4 deletions
|
@ -133,12 +133,15 @@
|
|||
}
|
||||
|
||||
&.comment-bubble-deleted {
|
||||
border-color: #FF6680;
|
||||
background-color: rgb(236, 206, 223);
|
||||
$deleted-outline: #ff6680;
|
||||
$deleted-background: rgb(236, 206, 223);
|
||||
|
||||
border-color: $deleted-outline;
|
||||
background-color: $deleted-background;
|
||||
|
||||
&:before {
|
||||
border-color: #FF6680 transparent #FF6680 #FF6680;
|
||||
background: rgb(236, 206, 223);
|
||||
border-color: $deleted-outline transparent $deleted-outline $deleted-outline;
|
||||
background: $deleted-background;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue