Skip to content
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

The space disappears after converting complex value #22

Closed
sgromkov opened this issue Oct 29, 2021 · 2 comments
Closed

The space disappears after converting complex value #22

sgromkov opened this issue Oct 29, 2021 · 2 comments

Comments

@sgromkov
Copy link

Original CSS:

border-radius: 100%/130% 130% 15px 15px;
box-shadow: 0 1px 2px rgba(0,0,0,.5);
text-shadow: -1px -1px 0 #000,2px -1px 0 #000,2px 2px 0 #000,-1px 2px 0 #000,2px 3px 0 #000,1px 3px 0 #000,2px 3px 0 #000;

❌ Current conversion result:

borderRadius: "100%/130%130%15px15px",
boxShadow: "01px2pxrgba(0,0,0,.5)",
textShadow: "-1px-1px0#000,2px-1px0#000,2px2px0#000,-1px2px0#000,2px3px0#000,1px3px0#000,2px3px0#000",

✅ Expected result:

borderRadius: "100%/130% 130% 15px 15px",
boxShadow: "0 1px 2px rgba(0,0,0,.5)",
textShadow: "-1px -1px 0 #000, 2px- 1px 0 #000, 2px 2px 0 #000, -1px 2px 0 #000, 2px 3px 0 #000, 1px 3px 0 #000, 2px 3px 0 #000",
@Lakkanna
Copy link
Owner

Hi @sgromkov
I'm sorry for the delayed response on this issue, The issue has been fixed in version 0.2.0 now

Current conversion result

borderRadius: "100%130% 130% 15px 15px",
boxShadow: "0 1px 2px rgba(0,0,0,.5)",
textShadow: "-1px -1px 0 #000,2px -1px 0 #000,2px 2px 0 #000,-1px 2px 0 #000,2px 3px 0 #000,1px 3px 0 #000,2px 3px 0 #000",

There is still an issue related to providing a space after a comma (,). We will fix that soon.

@Lakkanna
Copy link
Owner

Hi @sgromkov,

I'm glad to inform you that the issue you reported has been fixed in the latest version. We've closed this issue for now, but if you find that the issue still persists in the latest version, please feel free to reopen this issue and provide us with more details.

Thank you for bringing this issue to our attention and helping us to improve extension.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants