From 09af835f4e65a928464506e8d6d14c7b645e5ab4 Mon Sep 17 00:00:00 2001 From: www-data <www-data@php.lxd> Date: Thu, 5 Sep 2024 08:29:01 +0800 Subject: [PATCH] 1 --- resources/views/danmaku/index.blade.php | 4 +++- resources/views/index.blade.php | 6 ++++-- resources/views/program/index.blade.php | 6 ++++-- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/resources/views/danmaku/index.blade.php b/resources/views/danmaku/index.blade.php index a46c5b4..77b3213 100644 --- a/resources/views/danmaku/index.blade.php +++ b/resources/views/danmaku/index.blade.php @@ -52,7 +52,9 @@ </div> </div> @endforeach - {{$video_list->links()}} + <div class="max-w xl:max-w-5xl lg:max-w-2xl md:max-w-lg mx-2 md:mx-auto"> + {{$video_list->links()}} + </div> @include("common.footer") </body> </html> diff --git a/resources/views/index.blade.php b/resources/views/index.blade.php index 031bebc..5a28d67 100644 --- a/resources/views/index.blade.php +++ b/resources/views/index.blade.php @@ -7,7 +7,7 @@ </head> <body> @include("common.header") -<form class="form py-2" action=""> +<form class="max-w xl:max-w-5xl lg:max-w-2xl md:max-w-lg mx-2 md:mx-auto form py-2" action=""> <label for="keyword">查找节目单关键词,空格隔开查找多个关键词</label> <input class="border border-black" type="text" name="keyword" id="keyword" value="{{$keyword}}"> <input class="border border-black" type="submit"> @@ -37,7 +37,9 @@ </div> </div> @endforeach -{{$comments->links()}} +<div class="max-w xl:max-w-5xl lg:max-w-2xl md:max-w-lg mx-2 md:mx-auto"> + {{$comments->links()}} +</div> @include("common.footer") </body> </html> diff --git a/resources/views/program/index.blade.php b/resources/views/program/index.blade.php index efcf19a..ea5a6aa 100644 --- a/resources/views/program/index.blade.php +++ b/resources/views/program/index.blade.php @@ -25,7 +25,7 @@ </button> </div> </div> -<form class="form py-2" action=""> +<form class="max-w xl:max-w-5xl lg:max-w-2xl md:max-w-lg mx-2 md:mx-auto form py-2" action=""> <label for="keyword">查找节目关键词,空格隔开查找多个关键词,支持通过点播老板或追加内容搜索</label> <input class="border border-black" type="text" name="keyword" id="keyword" value="{{$keyword}}"> <input class="border border-black" type="submit"> @@ -88,7 +88,9 @@ @endforeach </tbody> </table> -{{$programs->links()}} +<div class="max-w xl:max-w-5xl lg:max-w-2xl md:max-w-lg mx-2 md:mx-auto"> + {{$programs->links()}} +</div> @include("common.footer") </body> </html>