Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"start": "webpack-dev-server --config ./webpack.config.dev.js --port 2570 --quiet",
"docs-dist": "webpack --config webpack.config.prod.js",
"lib": "npm run clean && babel src -d lib",
"clean": "rmdir /s /q lib && mkdir lib",
"clean": "rm -rf lib && mkdir lib",
"prepare": "npm run lib"
},
"repository": {
Expand Down
14 changes: 9 additions & 5 deletions src/components/facebook/FacebookSelector.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,15 @@ export const FacebookSelector = ({ iconSize, reactions, variant, onSelect }) =>
const styles = reactCSS({
'default': {
selector: {
backgroundColor: '#fff',
borderRadius: '50px',
padding: '2px',
boxShadow: '0 0 0 1px rgba(0, 0, 0, .05), 0 1px 2px rgba(0, 0, 0, .15)',
display: 'flex',
overflowY: "none",
overflowX: "scroll",
cursor: "pointer",
position: "absolute",
bottom: "10px",
color: "white",
fontSize: "large",
left:"82%",
height:"150px",
},
icon: {
width: `${ iconSize + 10 }px`,
Expand Down