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

Double minus in calc css #6817

Open
taime opened this issue May 28, 2019 · 1 comment
Open

Double minus in calc css #6817

taime opened this issue May 28, 2019 · 1 comment

Comments

@taime
Copy link

taime commented May 28, 2019

Bug Report

There are double minus in css file (--1px)

Steps

Download https://cdn.jsdelivr.net/npm/[email protected]/dist/semantic.css

Expected Result

 .ui.attached.steps {
   width: calc(100% + (1px * 2)) !important;
   margin: 0em -1px 0;
   max-width: calc(100% + (1px * 2));
   border-radius: 0.28571429rem 0.28571429rem 0em 0em;
 }

Actual Result

 .ui.attached.steps {
   width: calc(100% + 2px) !important;
   margin: 0em -1px 0;
   max-width: calc(100% + 2px);
   border-radius: 0.28571429rem 0.28571429rem 0em 0em;
 }

Version

2.4.2

There are also some places with double minus like here (--1px)
I really think this is mistake. It it's not, please tell me what does it mean ?

@lubber-de

This comment was marked as spam.

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