From f53821a1bd07d6ccf0c7100439525233842d1481 Mon Sep 17 00:00:00 2001 From: Thomas Smith <49042513+tsmitty11@users.noreply.github.com> Date: Mon, 26 Sep 2022 17:44:15 -0400 Subject: [PATCH] Styling for package thumbnail on mobile --- src/layouts/partials/package-thumbnail.html | 28 +++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/src/layouts/partials/package-thumbnail.html b/src/layouts/partials/package-thumbnail.html index 3750edf..c9b13e3 100644 --- a/src/layouts/partials/package-thumbnail.html +++ b/src/layouts/partials/package-thumbnail.html @@ -37,6 +37,10 @@ top:0.502vw; } + .thumbnail-body-mobile{ + display: none; + } + } @media only screen and (max-width: 576px) { @@ -62,6 +66,30 @@ margin-bottom: 0vw; } + .detail-btn-mobile{ + background:none; + border:none; + color: white; + font-family: "pp-neue-machina", sans-serif; + font-size: 5vw; + width: 100%; + height: 100%; + text-transform: uppercase; + padding-top: 2vw !important; + } + + .detail-btn-mobile .icon-enter-arrow{ + display: inline-block; + position: relaitve; + margin-right: 2vw; + transition: 0.2s ease-in-out; + } + + .detail-btn-mobile:hover .icon-enter-arrow{ + display: inline-block; + transform: rotate(-45deg) !important; + } + }