main
css 18 lines 313 Bytes
Raw
1 .NewArrayValue {
2 white-space: nowrap;
3 display: flex;
4 align-items: center;
5 }
6
7 .EditableName {
8 margin-left: 1rem;
9 }
10
11 .Invalid {
12 background-color: var(--color-background-invalid);
13 color: var(--color-text-invalid) !important;
14 }
15
16 .Invalid:focus {
17 background-color: var(--color-button-background-focus);
18 }