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

@ -22,7 +22,7 @@ destroyed, and so on. This is why all scopes must be created within another
scope, except `root()` which is used to create the initial scope that you can
manually destroy.
```lua
```luau
local root = vide.root
local source = vide.source
local effect = vide.effect
@ -45,7 +45,7 @@ count(1) -- prints "1"
The scope created by `root()` can be destroyed.
```lua
```luau
local function setup()
local count = source(0)