Skip to content

Commit d25b8a0

Browse files
committed
improved DBMS-links in "what is dynapi"
1 parent 712d2de commit d25b8a0

File tree

1 file changed

+22
-3
lines changed
  • src/webpage/src/guide/what-is-dynapi

1 file changed

+22
-3
lines changed

src/webpage/src/guide/what-is-dynapi/index.md

+22-3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22
import { data as databases } from "/data/databases.data.ts";
33
</script>
44

5+
<style scoped>
6+
#dbms-list a {
7+
color: var(--vp-c-text-1);
8+
text-decoration: none;
9+
}
10+
#dbms-list a:hover {
11+
text-decoration: underline;
12+
}
13+
#dbms-list a > img {
14+
display: inline-block;
15+
height: 1em;
16+
margin-right: 0.5em;
17+
}
18+
</style>
19+
520
# What is DynAPI?
621

722
DynAPI is a **Dyn**amic **API** for many databases. \
@@ -38,9 +53,13 @@ While DynAPI (v1) could only work with PostgreSQL databases, the new DynAPI supp
3853

3954
## Supported Databases
4055

41-
<ul>
56+
<ul id="dbms-list">
4257
<li v-for="database in databases">
43-
<img style="display: inline-block; height: 1em; margin-right: 0.5em;" :src="database.src" :alt="database.label" />
44-
<span>{{ database.label }}</span>
58+
<a :href="database.href">
59+
<img :src="database.src" :alt="database.label" />
60+
<span>{{ database.label }}</span>
61+
</a>
4562
</li>
4663
</ul>
64+
65+
<small>*DynAPI is extendable to support other DBMS.</small>

0 commit comments

Comments
 (0)