All files / components/dropdown/dropdown-item dropdown-item.styled.js

0% Statements 0/8
0% Branches 0/4
0% Functions 0/2
0% Lines 0/2
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36                                                                       
import styled from 'styled-components'
 
const DropDownItemStyled = styled.li`
  padding: 10px 0px;
  max-height: 40px;
  color: #444d57;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 182px;
 
  &:hover
  {
    background-color: #e5edf4 !important;
  }
 
  .text {
    font-size: 14px;
    text-align: left;
    color: rgb(68, 77, 87);
    margin: 0px 0px 0px 10px;
  }
 
  .icon {
    height: 24px;
    width: 24px !important;
    min-width: 24px !important;
    padding: 0px !important;
    margin: 0 0 0 10px;
  }
`
export default DropDownItemStyled