foundation / foundation-emails

Quickly create responsive HTML emails that work on any device and client. Even Outlook.
https://get.foundation/emails/docs/
MIT License
7.77k stars 1.09k forks source link

Fix border radius #1118

Closed alexander-schranz closed 2 years ago

alexander-schranz commented 2 years ago

The border radius does not work as the parent defines the border so it is required todo currently the following in my scss file:

// fix border radius setting:
table.button {
    table {
        td {
            border-radius: $button-radius;
        }
    }
}
joeworkman commented 2 years ago

You simple need to add the radius class to the button table.

&.radius table td {
    border-radius: $button-radius;
    border: none;
  }