Skip to content

Commit

Permalink
Merge pull request #102 from obb8923/master
Browse files Browse the repository at this point in the history
buttoncss
  • Loading branch information
obb8923 authored May 23, 2024
2 parents c6d5a9f + aee5544 commit 4ee37c4
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
5 changes: 5 additions & 0 deletions front/src/css/MoreButton.module.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
.MoreButton:hover{
cursor:pointer;
background-color: #fff;
}
.MoreButton span{
text-decoration: underline;

}
.MoreButton{
border-radius: 45px;
}
8 changes: 7 additions & 1 deletion front/src/css/PostViewPage.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,18 @@ ul{
.buttoncontainer {
display: auto;
}
.editButtons {
/* .editButtons {
flex: 1;
align-items: center;
border: 1px solid white;
background-color: gainsboro;
margin-right: 10px;
height: 30px;
width: 100px;
} */
.editButtons{
border-radius: 45px;
}
.editButtons:hover{
background-color: #fff;
}
6 changes: 4 additions & 2 deletions front/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,16 @@ code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
button ,input[type=submit]{
button ,input[type=submit],input[type=button]{
border: 0;
background-color: transparent;
font-family: 'GyeonggiBatang',-apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
text-decoration: underline;
border-radius: 45px;
}
button:hover , input[type=submit]:hover{
button:hover , input[type=submit]:hover ,input[type=button]:hover{
cursor:pointer;
background-color: #dfdfdf;
}

0 comments on commit 4ee37c4

Please sign in to comment.