mirror of
https://github.com/exogen/t2-mapper.git
synced 2026-03-16 10:50:57 +00:00
begin live server support
This commit is contained in:
parent
0c9ddb476a
commit
e4ae265184
368 changed files with 17756 additions and 7738 deletions
29
src/components/JoinServerButton.module.css
Normal file
29
src/components/JoinServerButton.module.css
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
.Root {
|
||||
composes: IconButton from "./InspectorControls.module.css";
|
||||
composes: LabelledButton from "./InspectorControls.module.css";
|
||||
padding: 0 5px;
|
||||
}
|
||||
/* 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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue