mirror of
				https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
				synced 2025-11-04 16:23:41 +08:00 
			
		
		
		
	优化Select component
This commit is contained in:
		@@ -209,6 +209,7 @@
 | 
			
		||||
  max-width: fit-content;
 | 
			
		||||
  
 | 
			
		||||
  .select-with-icon-select {
 | 
			
		||||
    height: 100%;
 | 
			
		||||
    border: var(--border-in-light);
 | 
			
		||||
    padding: 10px 25px 10px 10px;
 | 
			
		||||
    border-radius: 10px;
 | 
			
		||||
@@ -217,7 +218,6 @@
 | 
			
		||||
    background-color: var(--white);
 | 
			
		||||
    color: var(--black);
 | 
			
		||||
    text-align: center;
 | 
			
		||||
    position: relative;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .select-with-icon-icon {
 | 
			
		||||
 
 | 
			
		||||
@@ -254,11 +254,8 @@ export function Select(
 | 
			
		||||
) {
 | 
			
		||||
  const { className, children, ...otherProps } = props;
 | 
			
		||||
  return (
 | 
			
		||||
    <div className={styles["select-with-icon"]}>
 | 
			
		||||
      <select
 | 
			
		||||
        className={`${styles["select-with-icon-select"]} ${className}`}
 | 
			
		||||
        {...otherProps}
 | 
			
		||||
      >
 | 
			
		||||
    <div className={`${styles["select-with-icon"]} ${className}`}>
 | 
			
		||||
      <select className={styles["select-with-icon-select"]} {...otherProps}>
 | 
			
		||||
        {children}
 | 
			
		||||
      </select>
 | 
			
		||||
      <DownIcon className={styles["select-with-icon-icon"]} />
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user