Skip to content

Commit

Permalink
fix popup
Browse files Browse the repository at this point in the history
  • Loading branch information
xtian7489 committed Aug 17, 2023
1 parent 84476b4 commit 61deae9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions ext/lib/site/Popup/component.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ const PopUp = (props) => {
</div>
)
}
else{return(null)}
}


Expand Down
3 changes: 2 additions & 1 deletion ext/lib/site/Popup/styles.styl
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@
text-decoration: none;
z-index: 9999;
transition: all 1s ease-in-out
border: none
}
.popup-proyectista.active{
right: 40px
right: 50px
}

.text-popup{
Expand Down
5 changes: 3 additions & 2 deletions ext/lib/site/home-multiforum/component.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,13 @@ export default class HomeMultiforumOverride extends Component {
}

render () {
const {forum} = this.state
return (
<div className='ext-home-multiforum'>
<Anchor id='container'>
<BannerForoVecinal title="Presupuesto participativo de General Pueyrredon" texts={this.state.texts} />
{this.state.forum && <ThumbsVoto texts={this.state.texts} forum={this.state.forum} />}
{this.state.forum && <BannerInvitacion forum={this.state.forum} />}
{forum && <ThumbsVoto texts={this.state.texts} forum={this.state.forum} />}
{forum && <BannerInvitacion forum={this.state.forum} />}
<EncuentrosProximos />
<BannerMapaVectores />
<Jump goTop={this.goTop} />
Expand Down

0 comments on commit 61deae9

Please sign in to comment.