Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 site/src/content/docs/components/toasts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ Toasts can be themed with our [theme color utilities]([[docsref:/customize/theme
<CloseButton dismiss="toast" />
</div>
<div class="toast-body">
This toast is a primary themed toast.
This toast is a accent themed toast.
Comment thread
coliff marked this conversation as resolved.
Outdated
<div class="hstack gap-2 mt-2">
<button type="button" class="btn-solid btn-sm">Take action</button>
<button type="button" class="btn-solid theme-secondary btn-sm" data-bs-dismiss="toast">Close</button>
Expand Down Expand Up @@ -235,7 +235,7 @@ Place toasts with custom CSS as you need them. The top right is often used for n
<div class="mb-3">
<label for="selectToastPlacement">Toast placement</label>
<select class="form-control mt-2" id="selectToastPlacement">
<option value="" selected>Select a position...</option>
<option value="" selected disabled>Select a position...</option>
Comment thread
coliff marked this conversation as resolved.
<option value="top-0 start-0">Top left</option>
<option value="top-0 start-50 translate-middle-x">Top center</option>
<option value="top-0 end-0">Top right</option>
Expand Down
2 changes: 1 addition & 1 deletion site/src/scss/_content.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
}

td {
font-family: var(--bs-font-monospace);
font-family: var(--bs-font-mono);

&:first-child {
padding-inline-end: 1.5rem;
Expand Down
Loading