feat: style fix

This commit is contained in:
Aditya Singh 2025-07-08 21:29:58 +05:30
parent d9d6e7b4f1
commit a7e8f31561
2 changed files with 18 additions and 5 deletions

View File

@ -60,7 +60,13 @@ function BreakoutOptions({
return (
<div style={{ height: '200px' }}>
<OverlayScrollbar>
<OverlayScrollbar
options={{
overflow: {
x: 'hidden',
},
}}
>
{/* eslint-disable-next-line react/jsx-no-useless-fragment */}
<>
{isFetching ? (

View File

@ -15,6 +15,8 @@
background: transparent;
width: 100%;
text-align: left;
white-space: normal;
word-break: break-all;
&:hover {
background-color: var(--bg-vanilla-200);
@ -57,10 +59,15 @@
.text {
flex: 1;
font-size: 13px;
font-weight: var(--font-weight-normal);
line-height: 17px;
letter-spacing: 0.01em;
font-size: 13px;
font-weight: var(--font-weight-normal);
line-height: 17px;
letter-spacing: 0.01em;
white-space: normal;
word-break: break-all;
overflow-wrap: anywhere;
display: block;
max-width: 100%;
}
}