| @import "../../css/type.scss"; | |
| .content { | |
| display: flex; | |
| align-items: center; | |
| justify-content: space-around; | |
| svg { | |
| margin-right: calc(var(--base) / 2); | |
| width: var(--base); | |
| height: var(--base); | |
| } | |
| } | |
| .label { | |
| @extend %label; | |
| display: flex; | |
| align-items: center; | |
| } | |
| .button { | |
| text-decoration: none; | |
| display: inline-flex; | |
| padding: 12px 18px; | |
| margin-bottom: var(--base); | |
| } | |
| .primary--white { | |
| background-color: black; | |
| color: white; | |
| } | |
| .primary--black { | |
| background-color: white; | |
| color: black; | |
| } | |
| .secondary--white { | |
| background-color: white; | |
| box-shadow: inset 0 0 0 1px black; | |
| } | |
| .secondary--black { | |
| background-color: black; | |
| box-shadow: inset 0 0 0 1px white; | |
| } | |
| .appearance--default { | |
| padding: 0; | |
| margin-left: -8px; | |
| } | |