You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
I'm using toast-ui.grid in my angular project and when i run ng serve a compilation error raises Expected identifier but found "*" [css-syntax-error] due to invalid CSS syntax in the file grid.css. the source of the invalid CSS syntax is the following
*margin-left: -2px; *padding-left: 2px;
The * prefix causing the compilation and when i removed it the app works just fine and there is no compilation error.
To Reproduce
Steps to reproduce the behavior:
Go to 'toast-ui.grid/src/css/grid.css'
Scroll down to the selector '.tui-grid-cell-content .tui-grid-content-input'
See error
Expected behavior
A clear and concise description of what you expected to happen.
Describe the bug
I'm using toast-ui.grid in my angular project and when i run
ng serve
a compilation error raisesExpected identifier but found "*" [css-syntax-error]
due to invalid CSS syntax in the file grid.css. the source of the invalid CSS syntax is the following*margin-left: -2px; *padding-left: 2px;
The * prefix causing the compilation and when i removed it the app works just fine and there is no compilation error.
To Reproduce
Steps to reproduce the behavior:
'toast-ui.grid/src/css/grid.css'
'.tui-grid-cell-content .tui-grid-content-input'
Expected behavior
A clear and concise description of what you expected to happen.
.tui-grid-cell-content .tui-grid-content-input { ... margin-left: -2px; padding-left: 2px; }
The * should be removed.
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: