Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions datapress/binding/user-binding.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ Here are the revised instructions for binding a user from the maker portal in tw

**How to use binding information in twig**

The user object allows you to check whether the current user is bound and access their associated Dataverse record values. For more details, see [user binding](/datapress/binding/user-binding.md).
The user object allows you to check whether the current user is bound and access their associated Dataverse record values.

**Example Usage**

Expand All @@ -139,4 +139,4 @@ Example Output
Jsandye Stanbra
```

[Read more](/twig/introduction/#access-the-current-user-record)
[Read more](/twig/introduction/#access-the-current-user-record)
13 changes: 13 additions & 0 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,16 @@
.left-pane, .right-pane { flex: 1; padding: 20px; overflow: auto; margin: 10px; /* Add margin to separate panes */ border: 1px solid #ccc; /* Optional: Add border for better visualization */ }
.left-pane { background-color: #f0f0f0; align-self: flex-start; /* Aligns to the start of the container */ }
.right-pane { background-color: #e0e0e0; align-self: flex-start; /* Aligns to the start of the container */ }

/* Underline all links */
article a {
text-decoration: underline;
}

/* Add external link icon to external links */
article a[href^="http"]:not([href*="docs.alexacrm.com"]):after {
content: "🔗";
margin-left: 4px;
font-size: 0.9em;
vertical-align: middle;
}