2026-03-09 12:38:40 -07:00
|
|
|
.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 {
|
2026-03-12 16:25:04 -07:00
|
|
|
/* font-size: 15px; */
|
2026-03-09 12:38:40 -07:00
|
|
|
}
|
|
|
|
|
.Pulsing {
|
|
|
|
|
animation: blink 1.2s ease-out infinite;
|
|
|
|
|
}
|
|
|
|
|
@keyframes blink {
|
|
|
|
|
0% {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
opacity: 0.25;
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-03-12 16:25:04 -07:00
|
|
|
|
|
|
|
|
.ButtonHint {
|
|
|
|
|
composes: ButtonHint from "./InspectorControls.module.css";
|
|
|
|
|
}
|