Skip to content

Commit 6276e2a

Browse files
committed
fix: spacing issues
1 parent 73f8872 commit 6276e2a

1 file changed

Lines changed: 17 additions & 1 deletion

File tree

src/routes/(console)/project-[region]-[project]/databases/database-[database]/backups/containerHeader.svelte

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,12 @@
4141

4242
{#if title === 'Policies' && policiesCreated >= maxPolicies}
4343
<div style:height="40px;" style:padding-block-start="4px">
44-
<DropList bind:show={showDropdown} width="16">
44+
<DropList
45+
bind:show={showDropdown}
46+
width="16"
47+
noArrow
48+
placement="bottom-start"
49+
class="gap-popover policies-popover">
4550
{#if $organization?.billingPlan === BillingPlan.PRO}
4651
<Tag
4752
size="s"
@@ -94,4 +99,15 @@
9499
.is-disabled {
95100
opacity: 0.5;
96101
}
102+
:global(.drop.gap-popover) {
103+
margin-block-start: 6px;
104+
}
105+
:global(.drop.policies-popover .drop-section) {
106+
padding-block: var(--space-5, 12px);
107+
padding-inline: var(--space-6, 16px);
108+
}
109+
:global(.drop.policies-popover .drop-list) {
110+
padding: 0;
111+
margin: 0;
112+
}
97113
</style>

0 commit comments

Comments
 (0)