From 7d5f27fa34598cdb29c95e43e8bb13075590e50c Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Thu, 13 Mar 2025 19:42:51 -0700 Subject: [PATCH] style: Adjust toast notification width, padding, and font size --- aider/website/examples/recording.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/aider/website/examples/recording.md b/aider/website/examples/recording.md index 5e5e2d882..56fc358de 100644 --- a/aider/website/examples/recording.md +++ b/aider/website/examples/recording.md @@ -68,16 +68,18 @@ layout: minimal .toast-notification { background-color: rgba(0, 0, 0, 0.7); color: white; - padding: 10px 20px; + padding: 12px 25px; border-radius: 8px; margin-bottom: 10px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); opacity: 0; transition: opacity 0.3s ease-in-out; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; - font-size: 16px; + font-size: 18px; text-align: center; - max-width: 80%; + min-width: 250px; + max-width: 90%; + white-space: nowrap; } /* Page container styling */