@@ -13,11 +13,11 @@ to maximise performance in the browser and on BEAM.
1313## Distributions
1414
1515Sketch is thought as bare package, built as a foundation for every CSS packages
16- that want to leverage on it. In the Sketch package, you'll find all CSS
17- properties accessible, as well as low level generation functions, to go from
18- Sketch to CSS. Sketch package is also made for framework developers, to provide
19- a common basement, reusable across the entire Gleam ecosystem, letting users
20- reuse their knowledge no matter what they are coding.
16+ that want to leverage it. In the Sketch package, you'll find all CSS properties
17+ accessible, as well as low level generation functions, to go from Sketch to CSS.
18+ Sketch package is also made for framework developers, to provide a common
19+ basement, reusable across the entire Gleam ecosystem, letting users reuse their
20+ knowledge no matter what they are coding.
2121
2222Sketch already supports two compilation target:
2323[ Lustre] ( https://hexdocs.pm/lustre/ ) , with
@@ -207,9 +207,9 @@ Because pure CSS generation is straightforward, `sketch_css` does not need a
207207cache to generate correct CSS files. Instead, ` sketch_css ` ships with a CLI
208208tool, able to read your Gleam styles files, and output corresponding your CSS
209209automagically, while providing an abstraction layer written in Gleam, to make
210- sure you're using the right classes! It's an other way to leverage on Sketch
211- core and enjoy the styling in Gleam, while taking advantage of all the static
212- CSS power!
210+ sure you're using the right classes! It's an other way to leverage Sketch core
211+ and enjoy the styling in Gleam, while taking advantage of all the static CSS
212+ power!
213213
214214To run the generator, you have to use the command
215215` gleam run -m sketch/css generate ` at the root of your project. By default,
@@ -291,9 +291,9 @@ module. Build your classes, and use them across your codebase!
291291
292292## Using media queries and pseudo-selectors
293293
294- Because we're building CSS, we can leverage on its full power, contrarily to
295- inline styling. This mean we can use media queries and pseudo-selectors! You
296- only need to call the proper functions, and Sketch will take care of the rest.
294+ Because we're building CSS, we can leverage its full power, contrarily to inline
295+ styling. This mean we can use media queries and pseudo-selectors! You only need
296+ to call the proper functions, and Sketch will take care of the rest.
297297
298298``` gleam
299299import sketch
0 commit comments