Skip to content

Instantly share code, notes, and snippets.

@realtomaszkula
Created August 6, 2018 08:15
Show Gist options
  • Save realtomaszkula/57f35eb11e37555c5a5debb8686f5299 to your computer and use it in GitHub Desktop.
Save realtomaszkula/57f35eb11e37555c5a5debb8686f5299 to your computer and use it in GitHub Desktop.
@Component({
selector: 'app-gradient-button',
template: `
<span class="gradient"></span>
<span class="content">
<ng-content></ng-content>
</span>
`,
styles: [
`
:host {
position: relative;
}
.gradient {
position: absolute;
}
.content {
position: relative;
} `
]
})
export class GradientButtonComponent { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment