Skip to content

Commit

Permalink
chore: formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sriramkanakam87 committed Dec 10, 2024
1 parent 15f44e3 commit 10d3283
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 12 deletions.
2 changes: 1 addition & 1 deletion resources/views/livewire/annotation-score-plot.blade.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div>
<div>
<h2 class="text-3xl font-bold tracking-tight text-gray-900 sm:text-4xl mb-3.5">
Annotations Score (Density Plot)
Annotations Score
</h2>
<div class="flex flex-col md:flex-row">
<div style="height: 550px;" class="w-full md:w-4/5 md:h-full">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire/density-plot.blade.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div>
<div>
<h2 class="text-3xl font-bold tracking-tight text-gray-900 sm:text-4xl mb-3.5">
NP-Likeliness (Density Plot)
NP-Likeliness
</h2>
<div class="flex flex-col md:flex-row">
<div style="height: 550px;" class="w-full md:w-4/5 md:h-full">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire/properties-plot.blade.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div class="w-full">
<div>
<h2 class="text-2xl font-bold tracking-tight text-gray-900 sm:text-3xl mb-3">
{{ ucfirst(str_replace('_', ' ', $name)) }} (Density Plot)
{{ ucfirst(str_replace('_', ' ', $name)) }}
</h2>
<div class="flex flex-col">
<div style="height: 400px;" class="w-full">
Expand Down
21 changes: 12 additions & 9 deletions resources/views/livewire/stats.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,16 +94,19 @@ class="pointer-events-none absolute inset-0 rounded-xl ring-1 ring-inset ring-gr
<div class="mx-auto max-w-6xl pb-32 px-8 w-full">
<livewire:annotation-score-plot />
</div>
<div class="ml-10 mr-10 grid grid-cols-1 md:grid-cols-2 gap-4 p-4">
@foreach ($properties_json_data as $name => $property)
@if ($name != 'np_likeness')
@livewire('properties-plot', [
'property' => $property,
'name' => $name
])
@endif
@endforeach
<div class="mx-auto max-w-6xl pb-32 px-8 w-full">
<div class=" grid grid-cols-1 md:grid-cols-2 gap-2 p-2">
@foreach ($properties_json_data as $name => $property)
@if ($name != 'np_likeness')
@livewire('properties-plot', [
'property' => $property,
'name' => $name
])
@endif
@endforeach
</div>
</div>


</div>
</div>

0 comments on commit 10d3283

Please sign in to comment.