Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
href="https://fonts.googleapis.com/css2?family=Archivo+Black&family=Gabarito:wght@400;500;600;700;800;900&family=IBM+Plex+Mono:wght@400;500;600&family=Kalam:wght@300;400;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./styles.css?v=30" />
<link rel="stylesheet" href="./styles.css?v=32" />
<script type="module" src="./script.js?v=47"></script>
<script src="https://cdn.counter.dev/script.js" data-id="4fbcc31f-5f37-40c3-8788-8fb56c79209b" data-utcoffset="3" crossorigin="anonymous"></script>
</head>
Expand Down
20 changes: 20 additions & 0 deletions docs/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -2442,6 +2442,7 @@ h3 {

.translation {
width: 100%;
min-height: 18rem;
padding-right: 1rem;
padding-left: 1rem;
}
Expand All @@ -2468,8 +2469,27 @@ h3 {
}

.terminal-line {
align-items: flex-start;
gap: 0.55rem;
overflow-x: visible;
font-size: 0.8rem;
white-space: normal;
}
Comment thread
greptile-apps[bot] marked this conversation as resolved.

.terminal-line > code {
min-width: 0;
overflow-wrap: anywhere;
}

.result-part {
display: inline;
overflow-wrap: anywhere;
white-space: normal;
}

/* Connector paths become difficult to follow once command text wraps. */
.translation-map {
display: none;
}

.demo-form {
Expand Down
2 changes: 1 addition & 1 deletion site/demo-config.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ test("loads one versioned browser toolbox bundle in both page and worker", () =>
});

test("cache-busts every layer of the sandbox runtime", () => {
assert.match(pageMarkup, /styles\.css\?v=30/);
assert.match(pageMarkup, /styles\.css\?v=32/);
assert.match(pageMarkup, /script\.js\?v=47/);
assert.match(pageScript, /demo-runtime\.js\?v=4/);
assert.match(runtimeBundle, /demo-sandbox\.html\?v=15/);
Expand Down
Loading