mirror of
https://github.com/wanderer-industries/wanderer
synced 2025-12-09 17:25:38 +00:00
* feat(Map): Add widget for comments. Refactor design of Signatures widget. Refactor a lot of code. Add Transition component in ui-kit. Sync versions of react. --------- Co-authored-by: Dmitry Popov <dmitriypopovsamara@gmail.com> Co-authored-by: achichenkov <aleksei.chichenkov@telleqt.ai>
23 lines
272 B
SCSS
23 lines
272 B
SCSS
.WdImgButtonRoot {
|
|
transition: opacity 200ms;
|
|
opacity: 0.5;
|
|
pointer-events: initial !important;
|
|
|
|
&.Disabled {
|
|
opacity: 0.3;
|
|
cursor: auto;
|
|
}
|
|
|
|
&:hover:not(&.Disabled) {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.Normal {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.Large {
|
|
font-size: 16px;
|
|
}
|