Skip to content

Commit

Permalink
bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas-science committed Apr 7, 2021
2 parents 9a72bca + 2180196 commit 280e5cc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .eslintcache

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions src/barre-amis-gauche.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export default class barregaucheamis extends Component {
<div >
{this.state.amislist.map((amis)=>(
<Link to={"/app2/"+amis.id} >
<div className="friend" name={amis.pseudo}>
<div className="friend-list-gauche-amis" name={amis.pseudo}>
<p>{amis.pseudo}</p>
</div>
</Link>
Expand All @@ -52,4 +52,5 @@ export default class barregaucheamis extends Component {
);
}

}
}

2 changes: 1 addition & 1 deletion src/components/paramètre.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export default class parametre extends Component {
render(){
return(
<div>
{/*<BarreGauche/>*/}
<BarreGauche/>
<form onSubmit={this.onSubmit}>
<input
type="text"
Expand Down
8 changes: 1 addition & 7 deletions src/style/barre-amis-gauche.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
body,
html {
font-family: Arial, Helvetica, sans-serif;
}



.liste-amis-gauche{
position: fixed;
width: 23%;
Expand Down Expand Up @@ -54,3 +47,4 @@ html {
}



0 comments on commit 280e5cc

Please sign in to comment.