t2-mapper/src/components/JoinServerButton.module.css

33 lines
739 B
CSS
Raw Normal View History

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 {
/* 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;
}
}
.ButtonHint {
composes: ButtonHint from "./InspectorControls.module.css";
}