update css and snippets

This commit is contained in:
alice 2024-10-28 15:54:22 +01:00
parent f7dac3f63a
commit cbce3348f2
27 changed files with 200 additions and 176 deletions

View file

@ -3,7 +3,7 @@
Explicitly creating effects to update properties is tedious. You can
*implicitly* create an effect to update properties instead.
```lua
```luau
local create = vide.create
local source = vide.source
@ -34,7 +34,7 @@ with a number key instead of string key) can return an instance or an array of
instances. An effect is automatically created to unparent removed instances and
parent new instances on source update.
```lua
```luau
local items = source {
create "TextLabel" { Text = "A" }
}