Bin
2025-12-17 05a69820e0c402b0b33c063d3b922f0a0571cbbb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
.input {
  width: 100%;
  padding: 0.4em 1em;
  border-width: 1px;
  display: block;
  background-color: var(--color-neutral-surface);
  border-color: var(--color-neutral-border);
  color: var(--color-neutral-content);
}
 
.editing {
  padding: 0;
  position: relative;
 
  .enter {
    pointer-events: all;
  }
}
 
.delete {
  color: #1890ff;
 
  // Typography.Paragraph has margin-bottom: 1em, so we have to compensate it to have icon in the middle
  margin-top: -1em;
  padding-left: 1em;
  line-height: 1.8em;
}