Update index.html

This commit is contained in:
Aleksandr Statciuk 2021-11-01 01:53:04 +03:00
parent d552efc5c4
commit a1daa84a1d

View file

@ -111,18 +111,19 @@
</div> </div>
<div class="card-content" x-show="country.expanded || (count > 0 && _query.length)"> <div class="card-content" x-show="country.expanded || (count > 0 && _query.length)">
<div class="table-container"> <div class="table-container">
<table class="table is-fullwidth"> <table class="table" style="min-width: 100%">
<thead> <thead>
<tr> <tr>
<th></th> <th></th>
<th>Name</th> <th>Name</th>
<th>TVG-ID</th> <th>TVG-ID</th>
<th>EPG</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<template x-for="channel in countryChannels"> <template x-for="channel in countryChannels">
<tr> <tr>
<td style="width: 150px; text-align: center"> <td class="is-vcentered" style="min-width: 150px; text-align: center">
<img <img
loading="lazy" loading="lazy"
x-show="channel.logo" x-show="channel.logo"
@ -130,12 +131,17 @@
style="max-width: 100px; max-height: 50px; vertical-align: middle" style="max-width: 100px; max-height: 50px; vertical-align: middle"
/> />
</td> </td>
<td class="is-vcentered"> <td class="is-vcentered" nowrap>
<div x-text="channel.display_name"></div> <div x-text="channel.display_name"></div>
</td> </td>
<td class="is-vcentered"> <td class="is-vcentered" nowrap>
<code x-text="channel.tvg_id"></code> <code x-text="channel.tvg_id"></code>
</td> </td>
<td class="is-vcentered">
<template x-for="guide in channel.guides">
<p><code style="white-space: nowrap" x-text="guide"></code></p>
</template>
</td>
</tr> </tr>
</template> </template>
</tbody> </tbody>