ali1234 / vhs-teletext

Software to recover teletext data from VHS recordings.
GNU General Public License v3.0
179 stars 21 forks source link

CSS missing row element #81

Closed jh42 closed 18 hours ago

jh42 commented 10 months ago

The current CSS files are missing display instructions for the row class (which is used by the v3 HTML generator to implement line breaks), resulting in a teletext page being rendered in a single line.

Re-adding the row element to the teletext.css from an earlier commit appears to fix the issue:

.row {
    display: flex;
}