Skip to content

Commit

Permalink
Fix CSS unintentended RTL style (#6465)
Browse files Browse the repository at this point in the history
  • Loading branch information
rithviknishad authored and Ashesh3 committed Oct 23, 2023
1 parent 2f79473 commit 5fa8db5
Showing 1 changed file with 3 additions and 12 deletions.
15 changes: 3 additions & 12 deletions src/Components/Facility/Consultations/NeurologicalTables.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,7 @@ const DataTable = (props: any) => {
Right
</div>
</div>
<div
style={{ direction: "rtl" }}
className="flex flex-row overflow-x-auto"
>
<div className="flex flex-row overflow-x-auto">
{data.map((x: any, i: any) => {
return (
<div
Expand Down Expand Up @@ -297,10 +294,7 @@ export const NeurologicalTable = (props: any) => {
<div className="mb-6">
<div className="text-xl font-semibold">Level Of Consciousness</div>
<div className="w-max-content my-4 flex max-w-full flex-row divide-y divide-gray-200 overflow-hidden shadow sm:rounded-lg">
<div
style={{ direction: "rtl" }}
className="flex flex-row overflow-x-auto"
>
<div className="flex flex-row overflow-x-auto">
{locData.map((x: any, i: any) => (
<div
key={`loc_${i}`}
Expand Down Expand Up @@ -376,10 +370,7 @@ export const NeurologicalTable = (props: any) => {
Total
</div>
</div>
<div
style={{ direction: "rtl" }}
className="flex flex-row overflow-x-auto"
>
<div className="flex flex-row overflow-x-auto">
{glasgowData.map((x: any, i: any) => {
return (
<div
Expand Down

0 comments on commit 5fa8db5

Please sign in to comment.