File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -196,7 +196,6 @@ export function DialogSelectFile(props: { mode?: DialogSelectFileMode; onOpenFil
196196 : language . t ( "palette.search.placeholder" ) ,
197197 autofocus : true ,
198198 hideIcon : true ,
199- class : "pl-3 pr-2 !mb-0" ,
200199 } }
201200 emptyMessage = { language . t ( "palette.empty" ) }
202201 loadingMessage = { language . t ( "common.loading" ) }
@@ -224,7 +223,7 @@ export function DialogSelectFile(props: { mode?: DialogSelectFileMode; onOpenFil
224223 </ div >
225224 }
226225 >
227- < div class = "w-full flex items-center justify-between gap-4 pl-1 " >
226+ < div class = "w-full flex items-center justify-between gap-4" >
228227 < div class = "flex items-center gap-2 min-w-0" >
229228 < span class = "text-14-regular text-text-strong whitespace-nowrap" > { item . title } </ span >
230229 < Show when = { item . description } >
Original file line number Diff line number Diff line change @@ -187,7 +187,7 @@ export function ModelSelectorPopover<T extends ValidComponent = "div">(props: {
187187 < Kobalte . Portal >
188188 < Kobalte . Content
189189 ref = { ( el ) => setStore ( "content" , el ) }
190- class = "w-72 h-80 flex flex-col rounded-md border border-border-base bg-surface-raised-stronger-non-alpha shadow-md z-50 outline-none overflow-hidden"
190+ class = "w-72 h-80 flex flex-col p-2 rounded-md border border-border-base bg-surface-raised-stronger-non-alpha shadow-md z-50 outline-none overflow-hidden"
191191 onEscapeKeyDown = { ( event ) => {
192192 setStore ( "dismiss" , "escape" )
193193 setStore ( "open" , false )
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ export function Dialog(props: DialogProps) {
6060 </ div >
6161 </ Show >
6262 < Show when = { props . description } >
63- < Kobalte . Description data-slot = "dialog-description" > { props . description } </ Kobalte . Description >
63+ < Kobalte . Description data-slot = "dialog-description" style = { { "margin-left" : "-4px" } } > { props . description } </ Kobalte . Description >
6464 </ Show >
6565 < div data-slot = "dialog-body" > { props . children } </ div >
6666 </ Kobalte . Content >
Original file line number Diff line number Diff line change 187187 [data-slot = "list-header" ] {
188188 display : flex;
189189 z-index : 10 ;
190- padding : 8px 12px 8px 12 px ;
190+ padding : 8px 12px 8px 8 px ;
191191 justify-content : space-between;
192192 align-items : center;
193193 align-self : stretch;
Original file line number Diff line number Diff line change @@ -264,8 +264,8 @@ export function List<T>(props: ListProps<T> & { ref?: (ref: ListRef) => void })
264264 />
265265 </ Show >
266266 </ div >
267- { searchAction ( ) }
268- </ div >
267+ { searchAction ( ) }
268+ </ div >
269269 </ Show >
270270 < div ref = { setScrollRef } data-slot = "list-scroll" >
271271 < Show
You can’t perform that action at this time.
0 commit comments