diff --git a/package.json b/package.json index 522c482..3057600 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "face-guardian", - "version": "1.1.7", + "version": "1.2.0", "description": "Face Guardian Components", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", diff --git a/src/components/FaceLogin/index.tsx b/src/components/FaceLogin/index.tsx index 0428c14..da9063b 100644 --- a/src/components/FaceLogin/index.tsx +++ b/src/components/FaceLogin/index.tsx @@ -50,23 +50,37 @@ const FaceLogin: React.FC = ({ const defaultStyles: CSSProperties = { display: 'flex', - flexDirection: 'column', + flexDirection: 'row', alignItems: 'center', justifyContent: 'center', background: '#9fdbfd', - border: '1px solid #5f9cbf', borderRadius: '5px', padding: '10px', - color: '#ddf3ff', + color: '#ffffff', fontSize: '16px', fontWeight: 600, cursor: 'pointer', + width: '100%', + gap: '2px', + border: 'none', + boxShadow: '0px 4px 8px rgba(0, 0, 0, 0.2)', + transition: '0.3s', + outline: 'none', }; const combinedStyles = { ...defaultStyles, ...buttonStyles }; return ( - );