Skip to content

Commit

Permalink
Fix overlay overflow; fix view model parameters of multiple account s…
Browse files Browse the repository at this point in the history
…tory
  • Loading branch information
MytsV committed Aug 9, 2024
1 parent 314674b commit 60ea6bd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ export const Playbook_Multi_Account: Story = {
rucioAuthHost: 'https://rucio.cern.ch',
},
authViewModel: {
status: "success",
message: "",
status: "multiple_accounts",
message: "mayank,ddmadmin,tester",
rucioAccount: "",
rucioMultiAccount: "mayank,ddmadmin",
rucioMultiAccount: "",
rucioAuthType: "",
rucioAuthToken: "",
rucioIdentity: "",
Expand Down
2 changes: 1 addition & 1 deletion src/component-library/Pages/Login/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const MultipleAccountsModal = ({
"border-2",
"bg-neutral-0 dark:bg-neutral-800",
"flex flex-col space-y-2 p-6",
"justify-center items-center overflow-hidden outline-none focus:outline-none"
"justify-center items-center overflow-y-visible outline-none focus:outline-none"
)}
contentLabel="Multiaccount Modal"
>
Expand Down
26 changes: 6 additions & 20 deletions src/component-library/outputtailwind.css
Original file line number Diff line number Diff line change
Expand Up @@ -959,10 +959,6 @@ html {
max-width: 48rem;
}

.min-w-full {
min-width: 100%;
}

.max-w-sm {
max-width: 24rem;
}
Expand Down Expand Up @@ -1078,10 +1074,6 @@ html {
flex-wrap: wrap;
}

.content-center {
align-content: center;
}

.items-start {
align-items: flex-start;
}
Expand Down Expand Up @@ -1160,12 +1152,6 @@ html {
margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-8 > :not([hidden]) ~ :not([hidden]) {
--tw-space-x-reverse: 0;
margin-right: calc(2rem * var(--tw-space-x-reverse));
margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-y-1 > :not([hidden]) ~ :not([hidden]) {
--tw-space-y-reverse: 0;
margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
Expand Down Expand Up @@ -1198,8 +1184,8 @@ html {
overflow-y: auto;
}

.overflow-x-hidden {
overflow-x: hidden;
.overflow-y-visible {
overflow-y: visible;
}

.overflow-y-scroll {
Expand Down Expand Up @@ -1661,14 +1647,14 @@ html {
background-color: rgb(133 77 14 / var(--tw-bg-opacity));
}

.p-0 {
padding: 0px;
}

.bg-opacity-50 {
--tw-bg-opacity: 0.5;
}

.p-0 {
padding: 0px;
}

.p-1 {
padding: 0.25rem;
}
Expand Down

0 comments on commit 60ea6bd

Please sign in to comment.