Skip to content

Commit e4d5d0d

Browse files
committed
fix: padding classes across API token, user and permission group forms
1 parent b9f5291 commit e4d5d0d

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/Pages/GlobalConfigurations/Authorization/APITokens/CreateAPIToken.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,8 +246,8 @@ const CreateAPIToken = ({
246246

247247
return (
248248
<div className="w-100 flexbox-col flex-grow-1 dc__content-space pb-16">
249-
<div className="pl-20 pr-20 pb-20">
250-
<div className="flex dc__content-space pb-16 dc__gap-8">
249+
<div className="px-20 pb-20">
250+
<div className="flex dc__content-space py-16 dc__gap-8">
251251
<div className="flex row ml-0 h-32">
252252
<div className="cn-9 fw-6 fs-16">
253253
<span className="cb-5 cursor" onClick={redirectToTokenList}>

src/Pages/GlobalConfigurations/Authorization/APITokens/EditAPIToken.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,8 +208,8 @@ const EditAPIToken = ({
208208

209209
return (
210210
<div className="fs-13 fw-4 w-100 flexbox-col flex-grow-1 dc__content-space pb-16">
211-
<div className="pl-20 pr-20 pb-20">
212-
<div className="flex dc__content-space pb-16 dc__gap-8">
211+
<div className="px-20 pb-20">
212+
<div className="flex dc__content-space py-16 dc__gap-8">
213213
<div className="flex row ml-0">
214214
<div className="cn-9 fw-6 fs-16">
215215
<span className="cb-5 cursor" onClick={redirectToTokenList}>

src/Pages/GlobalConfigurations/Authorization/PermissionGroups/AddEdit/PermissionGroupForm.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ const PermissionGroupForm = ({ isAddMode }: { isAddMode: boolean }) => {
156156

157157
return (
158158
<div className="flexbox-col dc__align-start dc__align-self-stretch flex-grow-1 dc__gap-24 pb-16">
159-
<div className="flex dc__content-space dc__gap-8 pr-20 pl-20 w-100">
159+
<div className="flex dc__content-space dc__gap-8 px-20 pt-16 w-100">
160160
<div className="flex dc__content-start dc__gap-4 fs-16 lh-32 fw-4 dc__ellipsis-right">
161161
<Link className="anchor" to={URLS.GLOBAL_CONFIG_AUTH_PERMISSION_GROUPS}>
162162
Permission Groups

src/Pages/GlobalConfigurations/Authorization/UserPermissions/AddEdit/UserForm.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ const UserForm = ({ isAddMode }: { isAddMode: boolean }) => {
268268

269269
return (
270270
<div className="flexbox-col dc__align-start dc__align-self-stretch flex-grow-1 dc__gap-24 pb-16">
271-
<div className="flex pr-20 pl-20 dc__content-space dc__gap-8 w-100">
271+
<div className="flex px-20 pt-16 dc__content-space dc__gap-8 w-100">
272272
<div className="flex dc__content-start dc__gap-4 fs-16 lh-32 fw-4 dc__ellipsis-right">
273273
<Link className="anchor" to={URLS.GLOBAL_CONFIG_AUTH_USER_PERMISSION}>
274274
User Permissions

0 commit comments

Comments
 (0)