Mercurial > code > home > repos > video
diff src/VideoSection.ts @ 22:ff73b95fc72f
frontend cleanups and improvements. this commit contains some future work too
author | drewp@bigasterisk.com |
---|---|
date | Mon, 17 Apr 2023 13:33:05 -0700 |
parents | f80f8c22752d |
children | 44bd161e4779 |
line wrap: on
line diff
--- a/src/VideoSection.ts Mon Apr 17 00:43:37 2023 -0700 +++ b/src/VideoSection.ts Mon Apr 17 13:33:05 2023 -0700 @@ -18,12 +18,15 @@ color: white; width: 300px; } + .video-title { + font-size: 120%; + } `, ]; render() { return html` <section @click=${this.click}> - <h1>${this.title}</h1> + <div class="video-title">${this.title}</div> <img src="${this.thumbRelPath}" /> </section> `;