index.less
1.11 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/* JoinFamily/index.less */
.motto-input-container {
display: flex;
justify-content: space-between;
margin-bottom: 1rem;
}
.motto-input-box {
width: 5rem;
height: 5rem;
text-align: center;
border: 1px solid #d1d5db;
border-radius: 0.5rem;
display: flex;
align-items: center;
justify-content: center;
}
.motto-input {
width: 100%;
height: 100%;
text-align: center;
font-size: 1.5rem;
background-color: transparent;
border: none;
outline: none;
padding: 0;
margin: 0;
box-sizing: border-box;
color: inherit;
}
.identity-title {
font-size: 1.25rem;
font-weight: 700;
margin-bottom: 1rem;
}
.identity-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
.identity-item {
display: flex;
align-items: center;
justify-content: center;
padding: 1rem;
border: 1px solid #e5e7eb;
border-radius: 0.5rem;
}
.identity-item-selected {
border-color: #3b82f6;
background-color: #eff6ff;
}
.identity-item-content {
display: flex;
flex-direction: column;
align-items: center;
}
.identity-item-icon {
font-size: 1.5rem;
margin-bottom: 0.5rem;
}