RegularToot: remove the left margin of content
All checks were successful
/ depoly (push) Successful in 1m20s

This commit is contained in:
thislight 2024-11-21 23:45:26 +08:00
parent 7e5692549d
commit 57b242c93f
No known key found for this signature in database
GPG key ID: FCFE5192241CCD4E
2 changed files with 10 additions and 2 deletions

View file

@ -1,5 +1,5 @@
.TootContent {
margin-left: calc(var(--card-pad, 0) + var(--toot-avatar-size, 0) + 8px);
margin-left: var(--card-pad, 0);
margin-right: var(--card-pad, 0);
line-height: 1.5;
@ -29,4 +29,8 @@
}
}
}
}
:where(.thread-top, .thread-mid) > .TootContent {
margin-left: calc(var(--card-pad, 0) + var(--toot-avatar-size, 0) + 8px);
}