Fix website rendering issues on Firefox with -webkit-line-clamp

This commit is contained in:
Keavon Chambers 2022-05-12 13:34:26 -07:00
parent ff57fef77c
commit 3480cc93d9
4 changed files with 15 additions and 3 deletions

View file

@ -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.
<details><summary><b>Addition technical details (click to show)</b></summary>
<details><summary><b>Additional technical details (click to show)</b></summary>
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<LayerId>, String)` (which carries a layer path and a string as data).