Skip to content

Commit

Permalink
Merge pull request #15 from mayel15/feature/filter
Browse files Browse the repository at this point in the history
add background image
  • Loading branch information
mayel15 authored Aug 14, 2023
2 parents 9bf3875 + 1888f87 commit 80dd117
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions src/App.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
a {
text-decoration: none;
}

body {
margin: 0;
padding: 0;
background-image: url(https://images.unsplash.com/photo-1616410731303-6affae095a0a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTR8fHNvZnR3YXJlJTIwZW5naW5lZXIlMjB3YWxsJTIwcGFwZXJ8ZW58MHx8MHx8fDA%3D&auto=format&fit=crop&w=500&q=60);
background-size: cover; /* Ajuste l'image pour couvrir tout le contenu du body */
background-repeat: no-repeat;
}
2 changes: 1 addition & 1 deletion src/components/Loading/Loading.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import './Loading.css'
export default function Loading (props){
return(
<div className="loading-img-container">
<img className="loading-img" src={props.url} alt='loading-img'></img>
<img className="loading-img" src={props.url} alt='loading-img'/>
</div>
)
}

1 comment on commit 80dd117

@vercel
Copy link

@vercel vercel bot commented on 80dd117 Aug 14, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

yonebi-front – ./

yonebi-front-git-main-mayel15.vercel.app
yonebi-front-mayel15.vercel.app
yonebi-front.vercel.app

Please sign in to comment.