mirror of
				https://github.com/zulip/zulip-desktop.git
				synced 2025-10-31 12:03:39 +00:00 
			
		
		
		
	There were couple of issue solved by this commit: - The button had extra 10px margin to right; this comes from .action class - The "Delete" text and icon were not aligned - The button looks bigger than other buttons Both of which made the button look broken. We fix first by changing .css-delete-action to #css-delete-action in css file; git grep shows this is only used once and is used as id not a class. Then we use display flex to fix the alinging of icon and text. We add box-sizing border-box which solves the bigger width issue. We remove extra 10px margin that comes from .action. Fixes: #801.