From 50172e55f572046f438d1b8857b3cde0184429fa Mon Sep 17 00:00:00 2001 From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com> Date: Sat, 30 Aug 2025 16:40:57 +0000 Subject: [PATCH] Remove unnecessary visual debugging elements from the application's styling Remove the `:after` pseudo-element from the `body` in `client/src/index.css`, which was previously used for visual debugging with a grid overlay. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 074b0e4c-6171-43bd-aa98-f9e04623ca14 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8cc42625-c1f5-4e43-99bd-77f2c4dedee2/074b0e4c-6171-43bd-aa98-f9e04623ca14/Sy6XHzr --- client/src/index.css | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/client/src/index.css b/client/src/index.css index 2c7b705..4e82746 100644 --- a/client/src/index.css +++ b/client/src/index.css @@ -66,22 +66,6 @@ color: hsl(210, 40%, 98%); min-height: 100vh; } - - body::after { - content: ''; - position: fixed; - top: 0; - left: 0; - width: 100%; - height: 100%; - pointer-events: none; - z-index: 9999; - background-image: - linear-gradient(rgba(255, 0, 0, 0.3) 1px, transparent 1px), - linear-gradient(90deg, rgba(255, 0, 0, 0.3) 1px, transparent 1px); - background-size: 20px 20px; - opacity: 1; - } } @layer utilities {