From 5652ae2ad322e77c5f5f0d29ee1614df0f6a8c86 Mon Sep 17 00:00:00 2001 From: Marcus Quinn Date: Tue, 25 Mar 2025 02:17:18 +0000 Subject: [PATCH] Set plugin tiles to max 700px width while keeping subnav at 900px --- admin/css/wp-allstars-admin.css | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/admin/css/wp-allstars-admin.css b/admin/css/wp-allstars-admin.css index 37caf40..781b382 100644 --- a/admin/css/wp-allstars-admin.css +++ b/admin/css/wp-allstars-admin.css @@ -1544,4 +1544,21 @@ body.wp-admin .button.pricing-button:hover, flex-direction: column; align-items: center; box-sizing: border-box !important; +} + +/* Set the individual plugin cards to max 700px width */ +#recommended .plugin-card { + width: 100% !important; + max-width: 700px !important; + margin: 0 auto 24px auto !important; + padding: 24px !important; + border: 1px solid #ddd !important; + border-radius: 8px !important; + box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important; + background: #fff !important; + transition: all 0.2s ease !important; + display: flex !important; + flex-direction: column !important; + position: relative !important; + box-sizing: border-box !important; } \ No newline at end of file