调整色值复制模式切换器的位置。
This commit is contained in:
		@@ -31,7 +31,7 @@
 | 
			
		||||
    padding: 0 var(--spacing-m);
 | 
			
		||||
    display: flex;
 | 
			
		||||
    flex-direction: column;
 | 
			
		||||
    gap: var(--spacing-xs);
 | 
			
		||||
    gap: var(--spacing-s);
 | 
			
		||||
    h5 {
 | 
			
		||||
      padding-block: var(--spacing-m);
 | 
			
		||||
      font-size: var(--font-size-m);
 | 
			
		||||
 
 | 
			
		||||
@@ -83,6 +83,11 @@ export function Tones() {
 | 
			
		||||
          </aside>
 | 
			
		||||
          <div className={styles.tones_content}>
 | 
			
		||||
            <h5>Color Tones</h5>
 | 
			
		||||
            <div className={styles.colors_booth}>
 | 
			
		||||
              {colors.map((c, index) => (
 | 
			
		||||
                <FlexColorStand key={`${c}-${index}`} color={c} valueMode={mode} />
 | 
			
		||||
              ))}
 | 
			
		||||
            </div>
 | 
			
		||||
            <div className={styles.color_value_mode}>
 | 
			
		||||
              <label>Copy color value in</label>
 | 
			
		||||
              <HSegmentedControl
 | 
			
		||||
@@ -97,11 +102,6 @@ export function Tones() {
 | 
			
		||||
                onChange={setMode}
 | 
			
		||||
              />
 | 
			
		||||
            </div>
 | 
			
		||||
            <div className={styles.colors_booth}>
 | 
			
		||||
              {colors.map((c, index) => (
 | 
			
		||||
                <FlexColorStand key={`${c}-${index}`} color={c} valueMode={mode} />
 | 
			
		||||
              ))}
 | 
			
		||||
            </div>
 | 
			
		||||
          </div>
 | 
			
		||||
        </section>
 | 
			
		||||
      </ScrollArea>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user