Skip to content

Commit

Permalink
Restyle URI and prefixes
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminaaron committed Oct 27, 2024
1 parent d210f35 commit 255cd90
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/screens/resolve-uri/ResolveUriScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,14 @@ const ResolveUriScreen = () => {
<AppScreenWrapper isDesktop={isDesktop} back={false}>
{localName ?
<>
<h2>{uri}</h2>
<small style={{color: "gray"}}>Prefixes:
<ul>
{Object.keys(prefixMap).map((key, idx) => (
<li key={idx}><strong>{prefixMap[key]}</strong>: {key}</li>
<div style={{fontSize: "x-large"}}>https://foerderfunke.org/default#<strong>{localName}</strong></div>
<div style={{fontSize: "small", color: "gray"}}>Prefixes:{" "}
{Object.keys(prefixMap).map((key, idx, arr) => (
<span key={idx}><strong>{prefixMap[key]}</strong>: {key}
{idx < arr.length - 1 && ", "}
</span>
))}
</ul>
</small>
</div>
<table>
<tbody>
<tr>
Expand Down

0 comments on commit 255cd90

Please sign in to comment.