mirror of
https://github.com/facebook/react.git
synced 2026-02-27 03:07:57 +00:00
32 lines
626 B
CSS
32 lines
626 B
CSS
.Group {
|
|
transition: all ease-in-out 250ms;
|
|
}
|
|
|
|
.Rect {
|
|
cursor: pointer;
|
|
stroke: var(--color-background);
|
|
transition: all ease-in-out 250ms;
|
|
}
|
|
|
|
.ForeignObject {
|
|
pointer-events: none;
|
|
transition: all ease-in-out 250ms;
|
|
}
|
|
|
|
.Div {
|
|
pointer-events: none;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
font-family: var(--font-family-sans);
|
|
font-size: var(--font-size-sans-normal);
|
|
margin-left: 0.25rem;
|
|
margin-right: 0.25rem;
|
|
line-height: 1.5;
|
|
padding: 0 0 0;
|
|
font-weight: 400;
|
|
color: var(--color-commit-gradient-text);
|
|
text-align: left;
|
|
transition: all ease-in-out 250ms;
|
|
}
|