mirror of
https://github.com/exogen/t2-mapper.git
synced 2026-03-13 17:30:56 +00:00
32 lines
739 B
CSS
32 lines
739 B
CSS
.Root {
|
|
composes: IconButton from "./InspectorControls.module.css";
|
|
composes: LabelledButton from "./InspectorControls.module.css";
|
|
}
|
|
/* Text label ("Connect", "Connecting...") follows standard breakpoint rules. */
|
|
.TextLabel {
|
|
composes: ButtonLabel from "./InspectorControls.module.css";
|
|
}
|
|
/* Ping label is always visible regardless of breakpoint. */
|
|
.PingLabel {
|
|
composes: ButtonLabel from "./InspectorControls.module.css";
|
|
display: flex !important;
|
|
margin-right: 2px;
|
|
}
|
|
.LiveIcon {
|
|
/* font-size: 15px; */
|
|
}
|
|
.Pulsing {
|
|
animation: blink 1.2s ease-out infinite;
|
|
}
|
|
@keyframes blink {
|
|
0% {
|
|
opacity: 1;
|
|
}
|
|
100% {
|
|
opacity: 0.25;
|
|
}
|
|
}
|
|
|
|
.ButtonHint {
|
|
composes: ButtonHint from "./InspectorControls.module.css";
|
|
}
|