From 93ea97eaf85f5d3f0f9a2eaaf63093a2bdc7b131 Mon Sep 17 00:00:00 2001 From: Sage Vaillancourt Date: Thu, 22 Sep 2022 15:57:30 +0000 Subject: [PATCH] Disable text-selection on main h1. Have logo link back to / --- flaskr/static/styles.css | 4 ++++ flaskr/templates/writing.html | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/flaskr/static/styles.css b/flaskr/static/styles.css index 72412c5..fdc07d0 100644 --- a/flaskr/static/styles.css +++ b/flaskr/static/styles.css @@ -16,6 +16,10 @@ h1, h2 { text-align: center; } +h1 { + user-select: none; +} + /* Small screens */ @media only screen and (max-width: 1080px) { body { diff --git a/flaskr/templates/writing.html b/flaskr/templates/writing.html index 2fd3802..a0029bc 100644 --- a/flaskr/templates/writing.html +++ b/flaskr/templates/writing.html @@ -24,7 +24,9 @@ -

UnderCover

+ +

UnderCover

+

The secret cover letter generator

{% from "_formhelpers.html" import render_field %}