Skip to content

Commit

Permalink
Merge pull request #34 from kenshoo/minor-css-changes
Browse files Browse the repository at this point in the history
minor css issues
  • Loading branch information
talyak authored Mar 21, 2018
2 parents 753bdd8 + 1bf0c15 commit 81fcca4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions src/components/multi_selection_list/multiselection_list.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ $list_font_size: $font-default;
.multi_selection_list {
color: $item_font_color;
border: $border-1 solid $grey-350;
&:first-of-type {
border-right: 0;
}
}

.list_filter_container {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
list-style: none;
padding: 0;
margin: 0;
outline: none;
}

.no_items {
font-size: $font-default;
font-size: $font-default;
color: $grey-450;
display: flex;
Expand Down
2 changes: 1 addition & 1 deletion src/components/react_multi_select.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { FormControlLabel } from "material-ui/Form";
import MultiSelectionList from "./multi_selection_list/multiselection_list";

export const ITEMS_LIST_HEIGHT = 320;
export const SELECTED_ITEMS_LIST_HEIGHT = 360;
export const SELECTED_ITEMS_LIST_HEIGHT = 361;
export const LIST_ROW_HEIGHT = 40;

const displayItem = ({ isItemSelected }) => item => {
Expand Down
2 changes: 1 addition & 1 deletion src/components/react_multi_select.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
justify-content: space-between;
border: $border-1 solid $grey-350;
border-width: $border-1 $border-1 0 0;
height: $space-50;
height: $space-50 + 1;
padding: 0 $space-20;
align-items: center;
font-size: 12px;
Expand Down

0 comments on commit 81fcca4

Please sign in to comment.