diff --git a/website/content/contribute/_index.md b/website/content/contribute/_index.md index 30821daa..d437f397 100644 --- a/website/content/contribute/_index.md +++ b/website/content/contribute/_index.md @@ -71,7 +71,7 @@ The actual document (the artwork data and layers included in a saved `.graphite` Every part of the Graphite stack works based on the concept of message passing. Messages are pushed to the front or back of a queue and each one is processed by the module's dispatcher in the order encountered. Only the dispatcher owns a mutable reference to update its module's state. -
Addition technical details (click to show) +
Additional technical details (click to show) A message is an enum variant of a certain message sub-type like `FrontendMessage`, `ToolMessage`, `DocumentsMessage` (plural), or `DocumentMessage` (singular). An example is `DocumentMessage::DeleteSelectedLayers` (which carries no data) or `DocumentMessage::RenameLayer(Vec, String)` (which carries a layer path and a string as data). diff --git a/website/sass/base.scss b/website/sass/base.scss index 7fe8afb5..52be879b 100644 --- a/website/sass/base.scss +++ b/website/sass/base.scss @@ -27,6 +27,7 @@ --font-size-link: 20px; --font-size-heading: 32px; --font-size-body: 16px; + --page-edge-padding: 28px; } @media screen and (max-width: 500px) { @@ -45,6 +46,7 @@ --font-size-link: 14px; --font-size-heading: 24px; --font-size-body: 16px; + --page-edge-padding: 12px; } } @@ -165,6 +167,8 @@ ol + p { code { background: var(--color-fog); padding: 0 4px; + word-break: break-all; + hyphens: none; } pre { @@ -577,6 +581,10 @@ hr, box-sizing: border-box; overflow: auto; } + + details { + width: 100%; + } } } diff --git a/website/templates/blog.html b/website/templates/blog.html index 3e6efbb9..02c41cf4 100644 --- a/website/templates/blog.html +++ b/website/templates/blog.html @@ -32,7 +32,9 @@ By {{ page.extra.author }}. {{ page.date | date(format="%B %d, %Y", timezone="America/Los_Angeles") }}.
- {{ page.summary | safe }} +
+ {{ page.summary | safe }} +
Keep Reading diff --git a/website/templates/index.html b/website/templates/index.html index 3e7e1c9b..07ffd3ed 100644 --- a/website/templates/index.html +++ b/website/templates/index.html @@ -316,7 +316,9 @@
By {{ article.extra.author }}. {{ article.date | date(format="%B %d, %Y", timezone="America/Los_Angeles") }}.
- {{ article.summary | safe }} +
+ {{ article.summary | safe }} +