Skip to content

Commit df158f1

Browse files
committed
Fix CBOR-LD side-table on small (> 1080p) screens.
1 parent 99c7bdb commit df158f1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

playground/next/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -297,8 +297,8 @@ <h2 class="ui massive header">JSON-LD Playground</h2>
297297
<div v-for="(tab, key) in tabs" :class="{ active: outputTab == key }" class="item" @click="setOutputTab(key)"><i class="icon" :class="tab.icon"></i> <span v-text="tab.label"></span></div>
298298
</div>
299299
<div class="ui fitted resizable scrolling active bottom attached tab segment">
300-
<div class="ui grid">
301-
<div class="column" :class="{'nine wide': outputTab == 'cborld'}">
300+
<div class="ui very compact divided grid">
301+
<div class="column" :class="{'eight wide': outputTab == 'cborld'}">
302302
<div v-show="outputTab != 'table'" id="read-only-editor"><!-- replaced by CodeMirror --></div>
303303
<table class="ui very padded table" v-show="outputTab == 'table'">
304304
<thead>
@@ -340,8 +340,8 @@ <h2 class="ui massive header">JSON-LD Playground</h2>
340340
</tr>
341341
</table>
342342
</div>
343-
<div class="seven wide column" v-if="outputTab == 'cborld'">
344-
<table class="ui fixed definition table">
343+
<div class="eight wide column" v-if="outputTab == 'cborld'">
344+
<table class="ui fixed definition table" style="margin-left: -0.25rem">
345345
<tr>
346346
<td class="three wide">JSON-LD Size</td><td><span v-text="cborLD.jsonldSize"></span> bytes</td>
347347
</tr>

0 commit comments

Comments
 (0)