Skip to content

Commit

Permalink
Fix box-shadow issue in FF. Improve README
Browse files Browse the repository at this point in the history
  • Loading branch information
Amphiluke committed Oct 10, 2024
1 parent 2ca41a8 commit 78396b2
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
# L-systems via lindsvg

This web application is a simple SVG-based L-system plotter and manager designed to serve as a live demonstration for the [lindsvg](https://github.com/Amphiluke/lindsvg) module which is used by the app under the hood.

There are a few L-system collections built in the app for demonstration purposes. These L-systems were gathered from various sources including the web, books, and articles. I appreciate the authors of these L-systems (you may find their names [in the app sources](src/stores/bank.mjs)).

## Links

* [Advanced examples](https://codepen.io/collection/DVzqWb)
* [The lindsvg module sources](https://github.com/Amphiluke/lindsvg)
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "lindsvg-pwa",
"private": true,
"version": "2.6.0",
"version": "2.6.1",
"type": "module",
"scripts": {
"lint": "eslint",
Expand Down
2 changes: 1 addition & 1 deletion src/components/TheSidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@ let interfaceStore = useInterfaceStore();
}
.buttons {
box-shadow: 0 -1px 0 0 var(--color-on-surface-mid);
display: flex;
height: var(--size-sidebar-button);
left: 0;
outline: 1px solid var(--color-on-surface-mid);
position: fixed;
top: 0;
transform: rotate(90deg) translateY(-100%);
Expand Down

0 comments on commit 78396b2

Please sign in to comment.