We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I added an option called vertical which is by default false, if it's true I run this:
let vertical = data.args["vertical"] if (vertical === true) { container.classList.remove("container"); container.classList.add("v-container"); }
The diff between container and v-container is flex-direction: column.
flex-direction: column
I need help with css, when displaying pictures vertically they don't use all the width. eg:
Any css wizard that can help me with this, if this feature is useful I can create a PR
Thank you @jrieke for this life saving project
The text was updated successfully, but these errors were encountered:
Figured it out, I edited .item in style.css
.container { width: 100%; display: flex; flex-direction: row; flex-wrap: wrap; gap: 0.5rem; } .v-container { width: 100%; display: flex; flex-direction: column; flex-wrap: wrap; gap: 0.5rem; } .item { /* width: 10rem; */ /* width: fit-content; */ margin: auto; }
vertical=True
vertical=False
You can go ahead and close this issue, big thanks
Sorry, something went wrong.
No branches or pull requests
I added an option called vertical which is by default false, if it's true I run this:
The diff between container and v-container is
flex-direction: column
.I need help with css, when displaying pictures vertically they don't use all the width. eg:
Any css wizard that can help me with this, if this feature is useful I can create a PR
Thank you @jrieke for this life saving project
The text was updated successfully, but these errors were encountered: