Merge pull request #1706 from piscis/patch-1
fix: Wrap tags and avoid horizontal overflow
This commit is contained in:
		@@ -1,7 +1,7 @@
 | 
				
			|||||||
<div>
 | 
					<div>
 | 
				
			||||||
    <h1>Tags</h1>
 | 
					    <h1>Tags</h1>
 | 
				
			||||||
    <div>Here you can see all the tags here</div>
 | 
					    <div>Here you can see all the tags here</div>
 | 
				
			||||||
    <div class="flex gap-2 pt-10">
 | 
					    <div class="flex gap-2 pt-10 flex-wrap">
 | 
				
			||||||
        @forelse ($tags as $tag)
 | 
					        @forelse ($tags as $tag)
 | 
				
			||||||
            <a class="box" href="{{ route('tags.show', ['tag_name' => $tag->name]) }}">{{ $tag->name }}</a>
 | 
					            <a class="box" href="{{ route('tags.show', ['tag_name' => $tag->name]) }}">{{ $tag->name }}</a>
 | 
				
			||||||
        @empty
 | 
					        @empty
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user