Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 330d75a

Browse files
committed
🍶
1 parent 15bfe98 commit 330d75a

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

client/gradolatrr_app/src/settings/Settings.svelte

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,11 @@
128128
</script>
129129

130130
<div class="dashboard" style={`width: ${70-w}vw`}>
131+
<!-- <Modal bind:showModal>
132+
<h2 slot="header">
133+
</h2>
134+
&lbrace; &rbrace;
135+
</Modal> -->
131136
<!-- <Modal bind:showModal>
132137
<div class="subheader">Select items to export (default all)</div>
133138
{#if info != undefined}
@@ -239,7 +244,9 @@
239244
<Button bind:text={exportText} icon={"fa-solid fa-arrow-right-from-bracket"} on:message={exportData}/>
240245

241246
<p class="subheader">Import</p>
242-
<p class="note">Import your grades <span> | See example file</span></p>
247+
<p class="note">Import your grades <span> |
248+
<span on:click={() => {showModal = true;} } class="hover">See example file</span>
249+
</span></p>
243250
<Button bind:text={importText} icon={"fa-solid fa-arrow-right-to-bracket"} on:message={importData}/>
244251

245252
<p class="subheader">Support</p>
@@ -265,7 +272,6 @@
265272
</div>
266273
</div>
267274
</div>
268-
269275
</div>
270276

271277
<style>
@@ -274,6 +280,10 @@ p {
274280
padding-bottom: 0px;
275281
}
276282
283+
.hover:hover {
284+
cursor: pointer;
285+
}
286+
277287
.note {
278288
color: #717171;
279289
font-size: 15px;

0 commit comments

Comments
 (0)