Skip to content

Commit

Permalink
fix: recent searches overflow scroll fix
Browse files Browse the repository at this point in the history
  • Loading branch information
CS76 committed Dec 11, 2024
1 parent 6f15492 commit 0e89a30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/livewire/structure-editor.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ class="mr-3 h-4 w-4 border-gray-300 text-secondary-dark focus:ring-secondary-dar
<div class="mt-6">
<h3 class="contents text-base font-medium text-gray-900">Previous searches</h3>
<ul class="mt-2">
<div class="grid grid-cols-2 gap-2">
<div class="grid grid-cols-2 gap-2 h-96 overflow-y-auto">
<template x-for="(search, index) in recentSearches"
:key="index">
<div>
Expand Down

0 comments on commit 0e89a30

Please sign in to comment.