Hide Vite error overlay in the application's styling

Add CSS rule to hide the Vite error overlay by setting `display: none !important;` in `client/src/index.css`.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 946a0075-7e32-454b-b348-9e7f576d7f45
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/60d372ff-2c10-46c7-b01b-10c3435136b0/946a0075-7e32-454b-b348-9e7f576d7f45/JlONw6J
This commit is contained in:
sebastjanartic 2025-09-04 13:04:45 +00:00
parent 4d31e42184
commit 9d8e037a03
2 changed files with 5 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

View File

@ -443,6 +443,11 @@ input[data-testid*="search"]::placeholder {
} }
} }
/* Skrij Vite error overlay */
vite-error-overlay {
display: none !important;
}
/* Test grid overlay - aktivna za mobilne naprave */ /* Test grid overlay - aktivna za mobilne naprave */
@media (max-width: 768px) { @media (max-width: 768px) {
body::after { body::after {