Skip to content

Commit bc96d34

Browse files
[WEB-5576] fix: remove optionsClassName from email and workspace forms (#8240)
1 parent 739b1bf commit bc96d34

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

apps/admin/app/(all)/(dashboard)/email/email-config-form.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,6 @@ export function InstanceEmailForm(props: IInstanceEmailForm) {
163163
label={EMAIL_SECURITY_OPTIONS[emailSecurityKey]}
164164
onChange={handleEmailSecurityChange}
165165
buttonClassName="rounded-md border-custom-border-200"
166-
optionsClassName="w-full"
167166
input
168167
>
169168
{Object.entries(EMAIL_SECURITY_OPTIONS).map(([key, value]) => (

apps/admin/app/(all)/(dashboard)/workspace/create/form.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,6 @@ export function WorkspaceCreateForm() {
177177
}
178178
buttonClassName="!border-[0.5px] !border-custom-border-200 !shadow-none"
179179
input
180-
optionsClassName="w-full"
181180
>
182181
{ORGANIZATION_SIZE.map((item) => (
183182
<CustomSelect.Option key={item} value={item}>

apps/admin/styles/globals.css

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,10 @@ body {
296296
}
297297

298298
/* scrollbar style */
299+
::-webkit-scrollbar {
300+
display: none;
301+
}
302+
299303
@-moz-document url-prefix() {
300304
* {
301305
scrollbar-width: none;
@@ -356,6 +360,23 @@ body {
356360
margin-top: 44px;
357361
}
358362

363+
/* scrollbar xs size */
364+
.scrollbar-xs::-webkit-scrollbar {
365+
height: 10px;
366+
width: 10px;
367+
}
368+
.scrollbar-xs::-webkit-scrollbar-thumb {
369+
border: 3px solid rgba(0, 0, 0, 0);
370+
}
371+
372+
.shadow-custom {
373+
box-shadow: 2px 2px 8px 2px rgba(234, 231, 250, 0.3); /* Convert #EAE7FA4D to rgba */
374+
}
375+
/* backdrop filter */
376+
.backdrop-blur-custom {
377+
@apply backdrop-filter blur-[9px];
378+
}
379+
359380
/* scrollbar sm size */
360381
.scrollbar-sm::-webkit-scrollbar {
361382
height: 12px;

0 commit comments

Comments
 (0)