_ripple-box.scss
ASCII text
1/* Activities Ripple */ 2 3@use "../../../../theme-color"; 4 5.ripple-box { 6width: 48px; 7height: 48px; 8border-radius: 0 0 48px 0; // radius equals the size of the box to give us the curve 9box-shadow: none; 10background-color: theme-color.stroke(theme-color.$on-dark); 11background-image: none; 12background-size: auto; 13 14// just a simple change to the border radius position 15&:rtl { 16border-radius: 0 0 0 48px; 17background-image: none; 18} 19} 20