41 lines
712 B
SCSS
41 lines
712 B
SCSS
@import '../../_css/type.scss';
|
|
|
|
.button {
|
|
border: none;
|
|
cursor: pointer;
|
|
display: inline-flex;
|
|
justify-content: center;
|
|
background-color: transparent;
|
|
text-decoration: none;
|
|
display: inline-flex;
|
|
padding: 12px 24px;
|
|
}
|
|
|
|
.content {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.label {
|
|
@extend %label;
|
|
text-align: center;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.appearance--primary {
|
|
background-color: var(--theme-elevation-1000);
|
|
color: var(--theme-elevation-0);
|
|
}
|
|
|
|
.appearance--secondary {
|
|
background-color: transparent;
|
|
box-shadow: inset 0 0 0 1px var(--theme-elevation-1000);
|
|
}
|
|
|
|
.appearance--default {
|
|
padding: 0;
|
|
color: var(--theme-text);
|
|
}
|