15 lines
287 B
CSS
15 lines
287 B
CSS
.input{
|
|
cursor: pointer!important;
|
|
@mixin light {
|
|
color: var(--mantine-color-dark-3);
|
|
text-align: right;
|
|
}
|
|
@mixin dark {
|
|
color: #CCC;
|
|
text-align: right;
|
|
}
|
|
&[data-disabled] {
|
|
background-color: transparent!important;
|
|
}
|
|
}
|