2021-12-08 18:21:39 -05:00
|
|
|
@import "../themes/themes";
|
|
|
|
|
|
|
|
.main-app {
|
|
|
|
@include themify() {
|
|
|
|
.element-btn {
|
|
|
|
outline: none;
|
|
|
|
border: none;
|
|
|
|
background: themed(buttonAccentColor);
|
|
|
|
color: themed(buttonPrimaryColor);
|
|
|
|
text-align: center;
|
|
|
|
padding: 4px 18px;
|
|
|
|
border-radius: 8px;
|
|
|
|
font-size: 0.9em;
|
|
|
|
|
|
|
|
&.element-btn-danger-link {
|
|
|
|
background: themed(buttonPrimaryColor);
|
|
|
|
color: themed(buttonDangerColor);
|
|
|
|
}
|
2021-12-09 16:35:28 -05:00
|
|
|
|
|
|
|
&.element-btn-danger {
|
|
|
|
background: themed(buttonDangerColor);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
opacity: 0.3;
|
|
|
|
}
|
2021-12-08 18:21:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.element-btn-row {
|
|
|
|
margin-top: 25px;
|
|
|
|
|
|
|
|
button {
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|