Skip to content

Commit de17569

Browse files
committed
Fix providers logos, polish footer and other captions
1 parent 8d28e42 commit de17569

File tree

8 files changed

+8
-4
lines changed

8 files changed

+8
-4
lines changed

src/assets/providers/COD.png

-12.1 KB
Loading

src/assets/providers/TCO.png

-43.5 KB
Binary file not shown.

src/assets/providers/TCOD.png

3.2 KB
Loading

src/assets/providers/aflow.png

4.68 KB
Loading

src/assets/providers/jarvis.png

3.03 KB
Loading

src/views/Footer.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Col>
55
This <a href="https://github.com/tilde-lab/optimade.science" target="_blank">open-source</a>
66
app is possible thanks to the
7-
<a href="http://www.optimade.org" target="_blank">OPTIMADE</a> standard &mdash; Open Databases Integration for Materials Design.
7+
<a href="http://www.optimade.org" target="_blank">OPTIMADE</a> standard.<br />No cookies or trackers are used.
88
</Col>
99
<Col col="auto">
1010
<Switch bind:value={$darkTheme}>Dark theme</Switch>

src/views/ModuleSelect/ModuleSelect.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{#await $modules then options}
2-
<Select {options} bind:value={selectedValue} placeholder="Select app or enter app URL" style="margin: 0 0 1em" />
2+
<Select {options} bind:value={selectedValue} placeholder="Select app" style="margin: 0 0 1em" />
33
{/await}
44

55
<script lang="ts" context="module">

src/views/Providers.svelte

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,13 @@
6262
// @ts-ignore
6363
import OPT from '@/assets/providers/OPT.png';
6464
// @ts-ignore
65-
import TCO from '@/assets/providers/TCO.png';
65+
import TCOD from '@/assets/providers/TCOD.png';
6666
// @ts-ignore
6767
import DM2 from '@/assets/providers/DM2.png';
68+
// @ts-ignore
69+
import aflow from '@/assets/providers/aflow.png';
70+
// @ts-ignore
71+
import jarvis from '@/assets/providers/jarvis.png';
6872
6973
import type { Types } from 'optimade';
7074
@@ -78,7 +82,7 @@
7882
exclusiveId: null,
7983
augmentationMode = false;
8084
81-
const logos: Logos = { COD: COD, MP: MP, MPDS: MPDS, NMD: NMD, OPT: OPT, TCO: TCO, '2DM': DM2 };
85+
const logos: Logos = { AFL: aflow, COD: COD, JAR: jarvis, MP: MP, MPDS: MPDS, NMD: NMD, OPT: OPT, TCO: TCOD, '2DM': DM2 };
8286
8387
function statusing(item: Types.Provider) {
8488
return $selectedProviders.includes(item.id) ? 'online' : 'offline';

0 commit comments

Comments
 (0)