mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-27 01:25:52 -05:00
don't show shared message forever
This commit is contained in:
parent
8d74726080
commit
3af745eede
2 changed files with 3 additions and 1 deletions
|
@ -10,7 +10,7 @@ $ui-orange-25percent: hsla(35, 90, 55, .25);
|
||||||
|
|
||||||
$ui-red: hsla(20, 100%, 55%, 1); /* #FF661A */
|
$ui-red: hsla(20, 100%, 55%, 1); /* #FF661A */
|
||||||
$ui-red-25percent: hsla(20, 100%, 55%, .25);
|
$ui-red-25percent: hsla(20, 100%, 55%, .25);
|
||||||
$ui-green-35percent: rgba(126, 225, 195, 0.35);
|
$ui-green-35percent: rgba(126, 225, 195, .35);
|
||||||
|
|
||||||
$ui-light-gray: hsla(0, 0, 98, 1); //#FAFAFA
|
$ui-light-gray: hsla(0, 0, 98, 1); //#FAFAFA
|
||||||
$ui-gray: hsla(0, 0, 95, 1); //#F2F2F2
|
$ui-gray: hsla(0, 0, 95, 1); //#F2F2F2
|
||||||
|
|
|
@ -66,6 +66,7 @@ const PreviewPresentation = ({
|
||||||
isLoggedIn,
|
isLoggedIn,
|
||||||
isNewScratcher,
|
isNewScratcher,
|
||||||
isShared,
|
isShared,
|
||||||
|
justShared,
|
||||||
loveCount,
|
loveCount,
|
||||||
loved,
|
loved,
|
||||||
modInfo,
|
modInfo,
|
||||||
|
@ -539,6 +540,7 @@ PreviewPresentation.propTypes = {
|
||||||
isLoggedIn: PropTypes.bool,
|
isLoggedIn: PropTypes.bool,
|
||||||
isNewScratcher: PropTypes.bool,
|
isNewScratcher: PropTypes.bool,
|
||||||
isShared: PropTypes.bool,
|
isShared: PropTypes.bool,
|
||||||
|
justShared: PropTypes.bool,
|
||||||
loveCount: PropTypes.number,
|
loveCount: PropTypes.number,
|
||||||
loved: PropTypes.bool,
|
loved: PropTypes.bool,
|
||||||
modInfo: PropTypes.shape({
|
modInfo: PropTypes.shape({
|
||||||
|
|
Loading…
Reference in a new issue