Comment 4 for bug 1674667

Revision history for this message
Khurshid Alam (khurshid-alam) wrote :

Which app was that?

You should be using (change the value if you need)

button.image-button { padding: 4px; } or

button.text-button.image-button { padding: 4px; } or

Or you could use margin

button {
  margin-left: 4px;
  margin-right: 4px;
}

Or even combination of both.

However all these will be applied for all buttons and can break the design. Ideally this type style should only be used for specific buttons;i.e in above case destructive buttons.