mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
38 lines
696 B
SCSS
38 lines
696 B
SCSS
@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);
|
|
}
|
|
|
|
&.element-btn-danger {
|
|
background: themed(buttonDangerColor);
|
|
}
|
|
|
|
&:disabled {
|
|
opacity: 0.3;
|
|
}
|
|
}
|
|
|
|
.element-btn-row {
|
|
margin-top: 25px;
|
|
|
|
button {
|
|
margin-right: 8px;
|
|
}
|
|
}
|
|
}
|
|
}
|