Skip to content

Commit

Permalink
fix message width
Browse files Browse the repository at this point in the history
  • Loading branch information
shota973 committed Sep 4, 2024
1 parent 137f672 commit d2b2406
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 24 deletions.
3 changes: 2 additions & 1 deletion src/components/Message.vue
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,9 @@ const extractCitation = () => {
grid-row: 2 / 4;
grid-column: 2;
padding-left: 10px;
max-width: 145vh;
word-break: break-all;
}
.header {
display: flex;
flex-direction: row;
Expand Down
26 changes: 3 additions & 23 deletions src/pages/IndividualMemo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -104,34 +104,14 @@ const Edit = () =>{
line-height: 10px;
float: left;
}
.content h1{
.content h1,h2{
border-bottom: 1px solid lightgray;
margin-bottom: 20px;
padding-top: 140px;
margin-top: -140px;
}
.content h2{
border-bottom: 1px solid lightgray;
margin-bottom: 20px;
padding-top: 140px;
margin-top: -140px;
}
.content h3{
text-align: left;
padding-top: 140px;
margin-top: -140px;
}
.content h4{
text-align: left;
padding-top: 140px;
margin-top: -140px;
}
.content h5{
text-align: left;
padding-top: 140px;
margin-top: -140px;
}
.content h6{
.content h3,h4,h5,h6{
text-align: left;
padding-top: 140px;
margin-top: -140px;
Expand Down
1 change: 1 addition & 0 deletions src/pages/Wiki.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
.view {
width: 80%;
max-width: 170vh;
margin: 0 auto;
}
Expand Down

0 comments on commit d2b2406

Please sign in to comment.