index.less 1.11 KB
/* 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;
}