Skip to content

Commit

Permalink
feat(ripple): add container style
Browse files Browse the repository at this point in the history
  • Loading branch information
alyleui committed Sep 30, 2018
1 parent e3ffe42 commit ead9a3d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/lib/ripple/ripple.service.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Injectable } from '@angular/core';
import { CoreTheme, LyTheme2 } from '@alyle/ui';
import { LyTheme2, LY_COMMON_STYLES } from '@alyle/ui';

export const styles = ({
rippleContainer: {
Expand All @@ -12,6 +12,12 @@ export const styles = ({
transform: 'scale(0)',
transition: 'opacity ease,transform cubic-bezier(.1, 1, 0.5, 1)',
pointerEvents: 'none'
},
container: {
...LY_COMMON_STYLES.fill,
overflow: 'hidden',
pointerEvents: 'none',
borderRadius: 'inherit'
}
});

Expand Down

0 comments on commit ead9a3d

Please sign in to comment.