refactor(style): increase width of blockquotes

This makes reading blockquotes a touch easier
This commit is contained in:
Price Hiller 2023-08-27 22:18:55 -05:00
parent 046ec3975c
commit e470b42182
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8
2 changed files with 5 additions and 0 deletions

View File

@ -6,6 +6,10 @@ article {
flex-direction: column;
}
article > blockquote {
align-self: center;
}
article > p > img {
margin-left: 50%;
transform: translateX(-50%);

View File

@ -185,6 +185,7 @@ a:visited {
blockquote {
background-color: var(--sumiInk1);
padding: 10px;
width: 90%;
border-left-width: 5px;
border-left-style: solid;
border-left-color: var(--sumiInk4);