Skip to content

Commit

Permalink
Update FocalPointPicker border-radius
Browse files Browse the repository at this point in the history
  • Loading branch information
tyxla committed Aug 22, 2024
1 parent d396f4d commit 9a71ac5
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
*/
import styled from '@emotion/styled';

/**
* Internal dependencies
*/
import { CONFIG } from '../../utils';

export const PointerCircle = styled.div`
background-color: transparent;
cursor: grab;
Expand All @@ -15,7 +20,7 @@ export const PointerCircle = styled.div`
z-index: 10000;
background: rgba( 255, 255, 255, 0.4 );
border: 1px solid rgba( 255, 255, 255, 0.4 );
border-radius: 50%;
border-radius: ${ CONFIG.radiusRound };
backdrop-filter: blur( 16px ) saturate( 180% );
box-shadow: rgb( 0 0 0 / 10% ) 0px 0px 8px;
Expand Down

0 comments on commit 9a71ac5

Please sign in to comment.