projects
/
nominatim-ui.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Feat: Added basic tests for all pages (#137)
[nominatim-ui.git]
/
src
/
components
/
DetailsInfoRow.svelte
1
<script>
2
export let title;
3
</script>
4
5
<style>
6
td {
7
padding: 2px 8px;
8
font-size: 0.9em;
9
}
10
</style>
11
12
<tr>
13
<td>{title}</td>
14
<td><slot></slot></td>
15
</tr>