_a11y.scss
ASCII text
1@use "../../../../theme-color"; 2 3// Pointer location 4.ripple-pointer-location { 5width: 50px; 6height: 50px; 7border-radius: (50px / 2); // radius equals the size of the box to give us the curve 8box-shadow: none; 9background-color: theme-color.$selected-overlay; 10} 11 12// Pointer accessibility notifications 13.pie-timer { 14width: 60px; 15height: 60px; 16-pie-border-width: 0; 17-pie-border-color: transparent; 18-pie-background-color: theme-color.$selected-overlay; 19} 20 21// Screen zoom/Magnifier 22.magnifier-zoom-region { 23border: 2px solid theme-color.$primary; 24 25&.full-screen { 26border-width: 0; 27} 28} 29