Skip to content

Commit

Permalink
fix: thread padding
Browse files Browse the repository at this point in the history
Signed-off-by: greta <[email protected]>
  • Loading branch information
GretaD committed Jul 24, 2024
1 parent d1b83dc commit f019d55
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/components/Thread.vue
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ export default {
flex-direction: row;
justify-content: space-between;
align-items: center;
padding: 30px 0;
padding: 0 0 10px 0;
// somehow ios doesn't care about this !important rule
// so we have to manually set left/right padding to chidren
// for 100% to be used
Expand All @@ -360,13 +360,16 @@ export default {
#mail-thread-header-fields {
// initial width
width: 0;
padding-left: 70px;
// while scrolling, the back button overlaps with subject on small screen
padding-left: 86px;
// grow and try to fill 100%
flex: 1 1 auto;
h2,
p {
padding-bottom: 7px;
margin-bottom: 0;
// some h2 styling coming from server add some space on top
margin-top: 5px;
}
p {
Expand Down

0 comments on commit f019d55

Please sign in to comment.