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
{{ message }}
This repository was archived by the owner on Sep 6, 2021. It is now read-only.
In src/styles/brackets_patterns_override.less there are some mentions of .border-radius mixin.
These can safely replaced with the corresponding css border-radius.
So .border-radius(0 0 3px 3px); will be border-radius: 0 0 3px 3px;
There are some other mentions in the tree, but they are in bootstrap files or in files where it is necessary, so there should be left untouched.
Description
In
src/styles/brackets_patterns_override.lessthere are some mentions of.border-radiusmixin.These can safely replaced with the corresponding css
border-radius.So
.border-radius(0 0 3px 3px);will beborder-radius: 0 0 3px 3px;There are some other mentions in the tree, but they are in bootstrap files or in files where it is necessary, so there should be left untouched.