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