Browse Source

Fixed wrap issue

Samson Mutunga 2 năm trước cách đây
mục cha
commit
796bf0074e
1 tập tin đã thay đổi với 3 bổ sung3 xóa
  1. 3 3
      resources/views/app/patient/care-month/_matrix.blade.php

+ 3 - 3
resources/views/app/patient/care-month/_matrix.blade.php

@@ -57,10 +57,10 @@ foreach ($days as $k => $day) {
         <tr>
             @if($mIndex === 0)
                 <td rowspan="{{count($days[$k])}}">
-                    {{$k}}
+                    <span class="text-nowrap">{{$k}}</span>
                 </td>
             @endif
-            <td>{{$m->time}}</td>
+            <td><span class="text-nowrap">{{$m->time}}</span></td>
             <td>
                 @if($m->label === 'BP')
                     BP
@@ -68,7 +68,7 @@ foreach ($days as $k => $day) {
                     Weight
                 @endif
             </td>
-            <td>
+            <td class="text-nowrap">
                 @if($m->label === 'BP')
                     {{ $m->sbp_mm_hg }}/{{ $m->dbp_mm_hg }}
                 @elseif($m->label === 'Wt. (lbs.)')