Compare commits
No commits in common. '01d69949d00781688570687aec9d79b3d1d990dc' and 'ee421b874c2e368b431054c2ee0fde3caf835f94' have entirely different histories.
01d69949d0
...
ee421b874c
@ -1,23 +0,0 @@
|
|||||||
<script lang="ts">
|
|
||||||
export let fullName: string = '[Full Name]';
|
|
||||||
export let occupationTitle: string = '[Occupation Title]';
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<h1>{fullName}</h1>
|
|
||||||
<h2>{occupationTitle}</h2>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<style lang="scss">
|
|
||||||
$grid-area: a;
|
|
||||||
|
|
||||||
section {
|
|
||||||
grid-area: $grid-area;
|
|
||||||
|
|
||||||
& > h1,
|
|
||||||
> h2 {
|
|
||||||
margin-block-start: 0.5em;
|
|
||||||
margin-block-end: 0.5em;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -0,0 +1,12 @@
|
|||||||
|
<div id="nameArea">
|
||||||
|
<h1 id="title">[FirstName LastName]</h1>
|
||||||
|
<h2 id="subTitle">[Does Things]</h2>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
$grid-area: a;
|
||||||
|
|
||||||
|
#nameArea {
|
||||||
|
grid-area: $grid-area;
|
||||||
|
}
|
||||||
|
</style>
|
Loading…
Reference in new issue