Q:

how to install styled components in react

npm i styled-components
1
npm install --save styled-components
0
npm install styled-components@^5.0.0 react@^16.8 react-dom@^16.8 react-is@^16.8npm install styled-components@^5.0.0 react@^16.8 react-dom@^16.8 react-is@^16.8
/**
 * Reset the text fill color so that placeholder is visible
 */
.npm__react-simple-code-editor__textarea:empty {
  -webkit-text-fill-color: inherit !important;
}

/**
 * Hack to apply on some CSS on IE10 and IE11
 */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /**
    * IE doesn't support '-webkit-text-fill-color'
    * So we use 'color: transparent' to make the text transparent on IE
    * Unlike other browsers, it doesn't affect caret color in IE
    */
  .npm__react-simple-code-editor__textarea {
    color: transparent !important;
  }

  .npm__react-simple-code-editor__textarea::selection {
    background-color: #accef7 !important;
    color: transparent !important;
  }
}
0

New to Communities?

Join the community