[WEB-579] style: scrollbar implementation (#3835)
* style: scrollbar added in profile summary and sidebar * style: scrollbar added in modals * style: scrollbar added in project setting screens * style: scrollbar added in workspace and profile settings * style: scrollbar added in dropdowns and filters
This commit is contained in:
parent
4d0f641ee0
commit
c06ef4d1d7
24 changed files with 41 additions and 31 deletions
|
|
@ -71,7 +71,7 @@ const ApiTokensPage: NextPageWithLayout = observer(() => {
|
|||
<>
|
||||
<PageHead title={pageTitle} />
|
||||
<CreateApiTokenModal isOpen={isCreateTokenModalOpen} onClose={() => setIsCreateTokenModalOpen(false)} />
|
||||
<section className="h-full w-full overflow-y-auto py-8 pr-9">
|
||||
<section className="w-full overflow-y-auto py-8 pr-9 ">
|
||||
{tokens.length > 0 ? (
|
||||
<>
|
||||
<div className="flex items-center justify-between border-b border-custom-border-200 py-3.5">
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@ const WebhooksListPage: NextPageWithLayout = observer(() => {
|
|||
return (
|
||||
<>
|
||||
<PageHead title={pageTitle} />
|
||||
<div className="h-full w-full overflow-hidden py-8 pr-9">
|
||||
<div className="w-full overflow-y-auto py-8 pr-9">
|
||||
<CreateWebhookModal
|
||||
createWebhook={createWebhook}
|
||||
clearSecretKey={clearSecretKey}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue