Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed usages of font sizes to respect browser's #7770

Merged
merged 1 commit into from
May 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Components/CameraFeed/NoFeedAvailable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default function NoFeedAvailable(props: Props) {
>
<CareIcon icon={props.icon} className="text-2xl" />
<span className="text-xs font-bold">{props.message}</span>
<span className="hidden px-10 font-mono text-[10px] text-gray-500 md:block">
<span className="hidden px-10 font-mono text-xs text-gray-500 md:block">
{redactedURL}
</span>
<div className="mt-4 flex items-center gap-2">
Expand Down
2 changes: 1 addition & 1 deletion src/Components/Common/Sidebar/SidebarItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ const SidebarItemBase = forwardRef(
<span
className={`absolute flex items-center justify-center bg-primary-500 font-semibold text-white ${
shrinked
? "right-3 top-0.5 h-4 w-5 rounded-md text-[9px]"
? "right-3 top-0.5 h-4 w-5 rounded-md text-xs"
: "inset-y-0 right-4 my-auto h-6 rounded-md px-2 text-xs"
} z-10 animate-pulse transition-all duration-200 ease-in-out`}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,7 @@ export const ConsultationUpdatesTab = (props: ConsultationTabProps) => {
tab2={
<div className="flex items-center justify-center gap-1 text-sm">
Events
<span className="rounded-lg bg-warning-400 p-px px-1 text-[10px] text-white">
<span className="rounded-lg bg-warning-400 p-px px-1 text-xs text-white">
beta
</span>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/Components/Patient/Waveform.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export default function Waveform(props: {
/>
<div className="absolute bottom-0 right-5 w-full md:w-[70%]">
{props.metrics && (
<div className="flex flex-row flex-wrap justify-end gap-2 text-[10px] text-gray-400">
<div className="flex flex-row flex-wrap justify-end gap-2 text-xs text-gray-400">
<div>Lowest: {Math.min(...queueData.slice(0, viewable))}</div>
<div>Highest: {Math.max(...queueData.slice(0, viewable))}</div>
<div>Stream Length: {data.length}</div>
Expand Down
Loading