Skip to content

Commit

Permalink
Responsiveness problem on new rootkey
Browse files Browse the repository at this point in the history
  • Loading branch information
harshsbhat committed Sep 24, 2024
1 parent d9a71e8 commit 54eecf9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/dashboard/app/(app)/settings/root-keys/new/client.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ export const Client: React.FC<Props> = ({ apis }) => {
<PermissionToggle
permissionName={`selectAll-${category}`}
label={<span className="text-base font-bold">{category}</span>}
description={`Select all for ${category} permissions for this API`}
description={`Select all ${category} permissions for this API`}
checked={isAllSelected}
setChecked={(isChecked) => {
allPermissionNames.forEach((permission) => {
Expand Down Expand Up @@ -305,7 +305,7 @@ const PermissionToggle: React.FC<PermissionToggleProps> = ({
}) => {
return (
<div className="flex items-center gap-0">
<div className="w-1/3 ">
<div className="w-4/6 mr-2 md:w-1/3">
<Tooltip>
<TooltipTrigger className="flex items-center gap-2">
<Checkbox
Expand Down

0 comments on commit 54eecf9

Please sign in to comment.