Renamed folder "CVs" to "cv"
This commit is contained in:
parent
74ed2460b3
commit
1bef85049e
14 changed files with 0 additions and 0 deletions
23
src/routes/zhen/cv/Comps/NameAndImage.svelte
Normal file
23
src/routes/zhen/cv/Comps/NameAndImage.svelte
Normal file
|
@ -0,0 +1,23 @@
|
|||
<script lang="ts">
|
||||
import NamePlate from "./NamePlate.svelte";
|
||||
import selfie from "$lib/zhen/cv-comps/zhenSelfie.jpg"
|
||||
</script>
|
||||
|
||||
<div class="nameAndImageContainer">
|
||||
<NamePlate/>
|
||||
<img src={selfie} class="selfie-constraints" alt="nothing"/>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.nameAndImageContainer {
|
||||
display: grid;
|
||||
place-items: center;
|
||||
}
|
||||
|
||||
.selfie-constraints{
|
||||
padding-top: 2.5mm;
|
||||
|
||||
max-width: 65%;
|
||||
border-radius: 5mm;
|
||||
}
|
||||
</style>
|
Loading…
Add table
Add a link
Reference in a new issue