Skip to content

Commit

Permalink
Fixed styles linter bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
cosywasswa committed Sep 25, 2023
1 parent f3d9863 commit d85be3a
Showing 1 changed file with 77 additions and 77 deletions.
154 changes: 77 additions & 77 deletions app/assets/stylesheets/application.css
Original file line number Diff line number Diff line change
@@ -1,148 +1,148 @@
*,
html {
margin: 0;
padding: 0;
box-sizing: border-box;
margin: 0;
padding: 0;
box-sizing: border-box;
}

a {
text-decoration: none;
text-decoration: none;
}

.users-article {
width: 80%;
display: flex;
justify-content: center;
gap: 2rem;
padding-top: 2rem;
width: 80%;
display: flex;
justify-content: center;
gap: 2rem;
padding-top: 2rem;
}

.container {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 1rem;
padding: 10px;
margin-bottom: 2rem;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 1rem;
padding: 10px;
margin-bottom: 2rem;
}

.photo {
width: 40%;
border: 1px solid black;
width: 40%;
border: 1px solid black;
}

.see-posts {
width: 150px;
height: 40px;
background-color: rgb(212, 142, 51);
color: white;
padding: 5px;
font-size: 17px;
width: 150px;
height: 40px;
background-color: rgb(212, 142, 51);
color: white;
padding: 5px;
font-size: 17px;
}

.details {
width: 100%;
border: 1px solid black;
display: flex;
justify-content: space-between;
padding: 10px;
width: 100%;
border: 1px solid black;
display: flex;
justify-content: space-between;
padding: 10px;
}

.details p {
padding-top: 30%;
padding-top: 30%;
}

.bio {
width: 80%;
border: 1px solid black;
padding: 10px;
width: 80%;
border: 1px solid black;
padding: 10px;
}

.bio p {
padding-bottom: 10px;
padding-bottom: 10px;
}

.post-details {
width: 80%;
border: 1px solid black;
padding: 10px;
width: 80%;
border: 1px solid black;
padding: 10px;
}

.post-details p {
position: relative;
top: 90%;
left: 87%;
position: relative;
top: 90%;
left: 87%;
}

.post-details h2 {
padding-bottom: 10px;
padding-bottom: 10px;
}

.posts-details {
border: 1px solid black;
padding: 10px;
border: 1px solid black;
padding: 10px;
}

.comment-cont {
border: 1px solid black;
padding: 10px;
border: 1px solid black;
padding: 10px;
}

.posts-details p {
position: relative;
top: 90%;
left: 87%;
position: relative;
top: 90%;
left: 87%;
}

.post-comment {
width: 80%;
display: flex;
flex-direction: column;
gap: 1px;
width: 80%;
display: flex;
flex-direction: column;
gap: 1px;
}

.post-comments {
width: 80%;
border: 1px solid black;
padding: 10px;
width: 80%;
border: 1px solid black;
padding: 10px;
}

.left {
display: flex;
display: flex;
}

.post-head {
display: flex;
justify-content: space-between;
display: flex;
justify-content: space-between;
}

.post-body {
padding-top: 20px;
padding-top: 20px;
}

.comments-container {
width: 80%;
border: 1px solid black;
padding: 10px;
width: 80%;
border: 1px solid black;
padding: 10px;
}

.post-container {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 1px;
padding: 10px;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 1px;
padding: 10px;
}

.pagination {
width: 150px;
height: 40px;
background-color: rgb(212, 142, 51);
color: white;
padding: 5px;
font-size: 17px;
}
width: 150px;
height: 40px;
background-color: rgb(212, 142, 51);
color: white;
padding: 5px;
font-size: 17px;
}

0 comments on commit d85be3a

Please sign in to comment.