27 lines
411 B
SCSS
27 lines
411 B
SCSS
button {
|
|
padding: 0 14px;
|
|
width: 100%;
|
|
|
|
&.has-icon {
|
|
padding: 0 14px 0 10px;
|
|
}
|
|
|
|
&.show-bg {
|
|
background-color: var(--iqser-btn-bg);
|
|
|
|
&:not(.mat-button-disabled):hover {
|
|
background-color: var(--iqser-btn-bg-hover);
|
|
}
|
|
}
|
|
|
|
&.bold-text {
|
|
span {
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
|
|
mat-icon {
|
|
width: 14px;
|
|
}
|
|
}
|