Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save realtomaszkula/8356703c9d154a68e39c7f60a4a3d178 to your computer and use it in GitHub Desktop.
Save realtomaszkula/8356703c9d154a68e39c7f60a4a3d178 to your computer and use it in GitHub Desktop.
@Component({
selector: 'app-card',
template: `
<header></header>
<main>
<section class="top"></section>
<button class="fab">+</button>
<section class="bottom"></section>
</main>
`,
styles: [`
header {
background-color: var(--primary);
}
.fab {
background-color: var(--accent);
}
// ...
`]
})
export class CardComponent {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment