From 3f40316d5331b5821632f34af12e9e1aacd15e54 Mon Sep 17 00:00:00 2001 From: ghassan Date: Tue, 3 Mar 2026 21:14:40 +0300 Subject: [PATCH] Style cancel button to match upload button --- resources/views/videos/create.blade.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/resources/views/videos/create.blade.php b/resources/views/videos/create.blade.php index 1af793c..f79121d 100644 --- a/resources/views/videos/create.blade.php +++ b/resources/views/videos/create.blade.php @@ -575,15 +575,15 @@ } .upload-page-actions .btn-cancel { - background: transparent; - border: 1px solid #404040; - color: #aaa; + background: #1a1a1a; + color: white; + box-shadow: 0 4px 15px rgba(230, 30, 30, 0.3); text-decoration: none; } .upload-page-actions .btn-cancel:hover { - border-color: #666; - color: #fff; + transform: translateY(-2px); + box-shadow: 0 6px 20px rgba(230, 30, 30, 0.4); } .upload-page-actions .btn-submit {