Skip to content

Commit 43365f4

Browse files
authored
Merge pull request #686 from appwrite/fix-small-design-issues-post-billing
fix: ul wrapping li, centering stuff
2 parents 8817e54 + 5c87a9a commit 43365f4

File tree

3 files changed

+9
-19
lines changed

3 files changed

+9
-19
lines changed

src/lib/components/fakeModal.svelte

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,11 @@
6767
on:click={handleBLur}
6868
bind:this={backdrop}>
6969
<div
70-
class="modal payment-modal"
70+
class="modal"
7171
class:is-small={size === 'small'}
7272
class:is-big={size === 'big'}
7373
class:is-separate-header={headerDivider}>
74-
<Form isModal {onSubmit} class="payment-form">
74+
<Form isModal {onSubmit}>
7575
<header class="modal-header">
7676
<div class="u-flex u-main-space-between u-cross-center u-gap-16">
7777
<div class="u-flex u-cross-center u-gap-16">
@@ -151,14 +151,4 @@
151151
background-color: hsl(240 5% 8% / 0.6);
152152
}
153153
}
154-
155-
.payment-modal {
156-
height: 100%;
157-
overflow: hidden;
158-
}
159-
160-
.payment-form {
161-
height: 100%;
162-
overflow: auto;
163-
}
164154
</style>

src/lib/wizards/functions/components/repositories.svelte

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -87,13 +87,13 @@
8787
]}
8888
value={null} />
8989
</div>
90-
<div class="u-width-full-line">
90+
<ul class="u-width-full-line">
9191
<InputSearch placeholder="Search repositories" disabled />
92-
</div>
92+
</ul>
9393
</div>
9494
{:then installations}
9595
<div class="u-flex u-gap-16">
96-
<div class="u-width-full-line">
96+
<ul class="u-width-full-line">
9797
<InputSelect
9898
id="installation"
9999
label="Select installation"
@@ -111,10 +111,10 @@
111111
);
112112
}}
113113
bind:value={selectedInstallation} />
114-
</div>
115-
<div class="u-width-full-line">
114+
</ul>
115+
<ul class="u-width-full-line">
116116
<InputSearch placeholder="Search repositories" bind:value={search} />
117-
</div>
117+
</ul>
118118
</div>
119119
{/await}
120120
<p class="text u-margin-block-start-16">

src/routes/console/organization-[organization]/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@
200200
<svelte:fragment slot="icons">
201201
{#if isCloud && regions}
202202
{@const region = findRegion(project)}
203-
<span class="u-color-text-gray">
203+
<span class="u-color-text-gray u-medium u-line-height-2">
204204
{region?.name}
205205
</span>
206206
{/if}

0 commit comments

Comments
 (0)