Skip to content

Commit

Permalink
fix: certificate settings bug not selecting right template
Browse files Browse the repository at this point in the history
  • Loading branch information
rotimi-best committed Nov 24, 2023
1 parent 6d975e4 commit b94435b
Show file tree
Hide file tree
Showing 12 changed files with 9 additions and 26 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,11 @@
{#each themes as theme}
<div class="flex mr-3">
<RadioButton value={theme} />
<img src={`/${theme}.png`} alt="themes" class="w-[110px] h-[82px]" />
<img
src={`/images/certificate_theme_${theme}.png`}
alt="themes"
class="w-[110px] h-[82px]"
/>
</div>
{/each}
</RadioButtonGroup>
Expand All @@ -77,8 +81,7 @@
<span class="my-4">
<p class="dark:text-gray-100 text-xs font-normal mt-4 mb-2">Course Description</p>
<TextArea
maxRows={6}
rows="6"
rows={6}
placeholder="a little description about the course"
bgColor="bg-gray-100"
bind:value={$course.description}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
export let studentName = '';
let borderwidth = 'border-4';
let bordercolor = 'border-pink-700';
let logo = './logo-512.png';
let logo = '/logo-512.png';
</script>

<div
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
import { course } from '$lib/components/Course/store';
import { currentOrg } from '$lib/utils/store/org';
export let studentName;
export let studentName = '';
let borderwidth = 'border-l-8';
let bordercolor = 'border-primary-800';
let logo = './logo-512.png';
let logo = '/logo-512.png';
</script>

<div
Expand Down
Binary file removed static/digital.png
Binary file not shown.
10 changes: 0 additions & 10 deletions static/digital.svg

This file was deleted.

File renamed without changes
File renamed without changes
Binary file removed static/images/course-banner-image.png
Binary file not shown.
Binary file removed static/notfound.webp
Binary file not shown.
Binary file removed static/notfound2.gif
Binary file not shown.
Binary file removed static/painting.png
Binary file not shown.
10 changes: 0 additions & 10 deletions static/painting.svg

This file was deleted.

0 comments on commit b94435b

Please sign in to comment.