mirror of
https://github.com/danbulant/Portfolio
synced 2026-05-27 14:02:14 +00:00
fix: table layout fixes
This commit is contained in:
parent
16ef3569e6
commit
dda76c34ef
1 changed files with 2 additions and 2 deletions
|
|
@ -14,9 +14,9 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="flex">
|
<div class="flex">
|
||||||
<input bind:value={grade.subject} type="text" />
|
<input class="w-1/2" on:keyup bind:value={grade.subject} type="text" />
|
||||||
{#each SEMESTERS as semester}
|
{#each SEMESTERS as semester}
|
||||||
<select bind:value={grade.semesters[semester]} name="">
|
<select class="ml-0.5 w-1/6" on:change bind:value={grade.semesters[semester]} name="">
|
||||||
<option value="" />
|
<option value="" />
|
||||||
<option value="1">1</option>
|
<option value="1">1</option>
|
||||||
<option value="2">2</option>
|
<option value="2">2</option>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue