mirror of
				https://github.com/langgenius/dify.git
				synced 2025-11-04 04:43:09 +00:00 
			
		
		
		
	fix: button widths (#4145)
This commit is contained in:
		
							parent
							
								
									8137d63000
								
							
						
					
					
						commit
						a79941df22
					
				@ -2,7 +2,7 @@
 | 
			
		||||
 | 
			
		||||
@layer components {
 | 
			
		||||
  .btn {
 | 
			
		||||
    @apply inline-flex justify-center items-center content-center h-9 leading-5 rounded-lg px-4 py-2 text-base cursor-pointer;
 | 
			
		||||
    @apply inline-flex justify-center items-center content-center h-9 leading-5 rounded-lg px-4 py-2 text-base cursor-pointer whitespace-nowrap;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .btn-default {
 | 
			
		||||
 | 
			
		||||
@ -42,8 +42,8 @@ const ConfirmUI: FC<IConfirmUIProps> = ({
 | 
			
		||||
      </div>
 | 
			
		||||
 | 
			
		||||
      <div className='flex gap-3 mt-4 ml-12'>
 | 
			
		||||
        <Button type='primary' onClick={onConfirm} className='flex items-center justify-center w-20 text-center text-white rounded-lg cursor-pointer h-9 '>{confirmText || t('common.operation.confirm')}</Button>
 | 
			
		||||
        <Button onClick={onCancel} className='flex items-center justify-center w-20 text-center text-gray-500 border rounded-lg cursor-pointer h-9 border-color-gray-200'>{cancelText || t('common.operation.cancel')}</Button>
 | 
			
		||||
        <Button type='primary' onClick={onConfirm} className='flex items-center justify-center min-w-20 text-center text-white rounded-lg cursor-pointer h-9 '>{confirmText || t('common.operation.confirm')}</Button>
 | 
			
		||||
        <Button onClick={onCancel} className='flex items-center justify-center min-w-20 text-center text-gray-500 border rounded-lg cursor-pointer h-9 border-color-gray-200'>{cancelText || t('common.operation.cancel')}</Button>
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user