summaryrefslogtreecommitdiffstats
path: root/ui/src/components/iframely-card.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'ui/src/components/iframely-card.tsx')
-rw-r--r--ui/src/components/iframely-card.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/src/components/iframely-card.tsx b/ui/src/components/iframely-card.tsx
index b0a0d34b..4bae06d1 100644
--- a/ui/src/components/iframely-card.tsx
+++ b/ui/src/components/iframely-card.tsx
@@ -52,7 +52,7 @@ export class IFramelyCard extends Component<
</a>
{iframely.html && (
<span
- class="ml-2 pointer"
+ class="ml-2 pointer text-monospace"
onClick={linkEvent(this, this.handleIframeExpand)}
>
{this.state.expanded ? '[-]' : '[+]'}
@@ -72,7 +72,7 @@ export class IFramelyCard extends Component<
)}
{this.state.expanded && (
<div
- class="my-2"
+ class="mt-3 mb-2"
dangerouslySetInnerHTML={{ __html: iframely.html }}
/>
)}