修改前
.button { display: inline-flex; padding: 12px 20px; border-radius: 10px; color: inherit; font-weight: 800; text-decoration: none; }
.button--primary { }
.button--secondary { }
修改後
.button { display: inline-flex; padding: 12px 20px; border: 2px solid transparent; border-radius: 10px; color: inherit; font-weight: 800; text-decoration: none; }
.button--primary { background: #0c7656; color: white; }
.button--secondary { border-color: #0c7656; color: #0c7656; }