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
6 changes: 6 additions & 0 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,12 @@ color: white;
background: linear-gradient(248.33deg, #FFF5EB4d -6.24%, #EDE2DE4d 44.52%, #7A9BE84d 116.8%)!important;
}

/* iOS Safari: click events don't fire on non-interactive elements without cursor:pointer */
.pills__item {
cursor: pointer;
touch-action: manipulation;
}

/* Always-bold section group headings in the right-side TOC */
.table-of-contents__link[href="#list-devices"],
.table-of-contents__link[href="#terminal-operations"],
Expand Down
4 changes: 2 additions & 2 deletions src/pages/cpdocs.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ function SdkTerminalTable() {

return (
<div>
<TableContainer>
<TableContainer style={{ overflowX: 'auto', width: '100%' }}>
<Table align="center" sx={{ maxWidth: 1000 }} aria-label="simple table">
<TableHead>
<TableRow sx={{ height: 30 }}>
Expand Down Expand Up @@ -740,7 +740,7 @@ function CommunicationTypesTable() {
return (

<div>
<TableContainer >
<TableContainer style={{ overflowX: 'auto', width: '100%' }}>
<Table align="center" sx={{ maxWidth: 1000 }} >
<TableHead>
<TableRow sx={{ maxHeight: 20 }}>
Expand Down
Loading