From 98f56f8adced806b068794c44be444f313478a89 Mon Sep 17 00:00:00 2001 From: Thomas Date: Mon, 29 Jan 2024 11:44:28 +0100 Subject: [PATCH] Merge pull request #16773 from overleaf/tm-website-redesign-minor-launch-fix Fix template card hover hint and overleaf sticker size at lower breakpoints GitOrigin-RevId: 6aefdb1a1a0c58ca5c481fea692b8c19579c8e0d --- .../web/frontend/stylesheets/app/website-redesign.less | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/services/web/frontend/stylesheets/app/website-redesign.less b/services/web/frontend/stylesheets/app/website-redesign.less index 8b3685b473..a0e8bf3a3d 100644 --- a/services/web/frontend/stylesheets/app/website-redesign.less +++ b/services/web/frontend/stylesheets/app/website-redesign.less @@ -498,6 +498,10 @@ display: inline-flex; justify-content: space-between; text-decoration: none; + + &:hover { + text-decoration: underline; + } } i.material-symbols-rounded { @@ -931,5 +935,9 @@ .overleaf-sticker { float: right; + + @media (max-width: @screen-sm-max) { + width: 74px; // 70% of 106px + } } }