From 5274bd7dd0813ac72cd4e40f0dc912c4bb8bd0c2 Mon Sep 17 00:00:00 2001 From: yungifez Date: Tue, 14 Mar 2023 20:20:17 +0000 Subject: [PATCH 1/4] Increased logo height in print --- resources/views/layouts/print.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/layouts/print.blade.php b/resources/views/layouts/print.blade.php index b1b5c515..05f86b7a 100755 --- a/resources/views/layouts/print.blade.php +++ b/resources/views/layouts/print.blade.php @@ -35,7 +35,7 @@ } .logo{ width: 100px; - height: 80px; + height: 100px; border-radius: 50px; } p{ From 776d21c7b44ee8f416a8a449e08b952f6f1391a7 Mon Sep 17 00:00:00 2001 From: yungifez Date: Tue, 14 Mar 2023 21:16:32 +0000 Subject: [PATCH 2/4] Fixed UI issues --- resources/views/livewire/list-syllabi-table.blade.php | 2 +- resources/views/livewire/list-timetables-table.blade.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/views/livewire/list-syllabi-table.blade.php b/resources/views/livewire/list-syllabi-table.blade.php index 19f9a05f..ef5c6c23 100644 --- a/resources/views/livewire/list-syllabi-table.blade.php +++ b/resources/views/livewire/list-syllabi-table.blade.php @@ -4,7 +4,7 @@
@if (!auth()->user()->hasRole('student')) - + @foreach ($classes as $item) @endforeach diff --git a/resources/views/livewire/list-timetables-table.blade.php b/resources/views/livewire/list-timetables-table.blade.php index da6f8494..c10ce742 100644 --- a/resources/views/livewire/list-timetables-table.blade.php +++ b/resources/views/livewire/list-timetables-table.blade.php @@ -4,7 +4,7 @@
@if (!auth()->user()->hasRole('student')) - + @foreach ($classes as $item) @endforeach From 3513a12ad8e7ee2b5e3ca8167bc0f44478daf6dc Mon Sep 17 00:00:00 2001 From: yungifez Date: Tue, 14 Mar 2023 21:45:18 +0000 Subject: [PATCH 3/4] Added arrow icon to dropdown buttom --- resources/views/components/dropdown.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/components/dropdown.blade.php b/resources/views/components/dropdown.blade.php index d25f7c0f..92d1605d 100644 --- a/resources/views/components/dropdown.blade.php +++ b/resources/views/components/dropdown.blade.php @@ -1,7 +1,7 @@ @props(['buttonLabel' => 'Actions', 'links', 'groupClass' => null, 'buttonClass' => null, 'dropdownClass' => null])
-