-
-
Notifications
You must be signed in to change notification settings - Fork 551
New issue
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
Problems with single column #87
Comments
Are you sure? Unless it was recently fixed (the last commit to master was over a month ago), I don't see what you're describing. Maybe you're looking at an older version? |
This issue appears in Safari only. Now I've checked in Firefox and everything works perfectly. |
Yup. I see it now. It is very interesting. Only happens when I select 5 and replace it with a 1. If I backspace and then type 1 it's fine. I wonder if it has something to do with VueX incorrectly updating the store in Safari. Weird that it only happens with 1 though. Will have to investigate more |
When set column quantity to 1 (+ 5 rows by default). The grid shows on preview 1 row with 5 columns, instead of 1 column and 5 rows. The code in the "Your Grid Code" is correct.
In Dev Tools you can see
grid-template-columns: repeat(5, 1fr);
, must begrid-template-columns: 1fr;
The text was updated successfully, but these errors were encountered: