Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
import { styled } from 'view-container'

export const StyledSelect = styled.div.attrs({
  'className': 'dropdown-parent',
  'data-qa': 'qa-dropdown',
}) `
  height: rem(44);

  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  padding: 0 rem(16);
  margin: 0;
  width: 100%;
  flex: 1;
  flex-direction: row;

  /*
  * NOTE:
  * we can pass the color code for fill by using props
  * this is causing when we overwriting the css
  */
  /* svg path {
    fill: $colors-blackrabbit;
  } */
`