Hello, we recompiling style.css from less source files, because we need to change main color.
But it seems that some rules in LESS sources are missing opposite to distributed styled.css. After LESS recompile, we found these differences:
.rounded-skill in newly created css is
.rounded-skill {
display: inline-block;
margin: 0 15px 15px;
}
but in distributed style.css is
.rounded-skill {
display: inline-block;
margin: 0 15px 15px;
display: inline-block;
position: relative;
text-align: center;
font-size: 22px;
font-weight: bold;
color: #333;
}
there is no rule .rounded-skill canvas in LESS sources
but in distributed style.css is
.rounded-skill canvas {
position: absolute;
top: 0;
left: 0;
}
Can you please verify these differences? It's really what we think, can you send as complete new package?
