Fix a few links to the docs that changed with the new structure

This commit is contained in:
Olivier Goffart 2024-02-03 09:38:49 +01:00
parent b4cddbbe18
commit 9200480b53
8 changed files with 12 additions and 12 deletions

View file

@ -3,11 +3,11 @@
The game is visually a little bare. Here are some ideas how you could make further changes to enhance it:
- The tiles could have rounded corners, to look a little less sharp. The [border-radius](https://slint.dev/docs/slint/src/builtins/elements.html#rectangle)
- The tiles could have rounded corners, to look a little less sharp. The [border-radius](https://slint.dev/docs/slint/src/language/builtins/elements#rectangle)
property of _Rectangle_ can be used to achieve that.
- In real world memory games, the back of the tiles often have some common graphic. You could add an image with
the help of another _[Image](https://slint.dev/docs/slint/src/builtins/elements.html#image)_
the help of another _[Image](https://slint.dev/docs/slint/src/language/builtins/elements#image)_
element. Note that you may have to use _Rectangle_'s _clip property_
element around it to ensure that the image is clipped away when the curtain effect opens.