38d31572dd
- Updated padding and margin properties across various chat components to utilize responsive design tokens, ensuring better adaptability to different screen sizes. - Replaced fixed sizes with responsive variables for buttons, avatars, and bubbles to enhance UI flexibility. - Adjusted font sizes to use responsive tokens, improving text readability on various devices. - Standardized border-radius and other dimensions using CSS variables for a cohesive design language. - Enhanced dialog and screen components with safe area insets for better compatibility with modern devices.
66 lines
1.2 KiB
CSS
66 lines
1.2 KiB
CSS
.list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--spacing-md);
|
|
width: 100%;
|
|
}
|
|
|
|
.button {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: var(--spacing-sm);
|
|
width: 100%;
|
|
min-height: var(--button-height);
|
|
padding: 0 var(--spacing-lg);
|
|
border: var(--border-light) solid var(--color-chat-input-border);
|
|
border-radius: var(--radius-full);
|
|
background: rgba(255, 255, 255, 0.04);
|
|
color: var(--color-text-primary);
|
|
font-size: var(--responsive-body, var(--font-size-md));
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
transition: background 0.15s ease;
|
|
}
|
|
|
|
.button:hover:not(:disabled) {
|
|
background: rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
.button:disabled {
|
|
opacity: 0.5;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.icon {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
|
|
.facebook {
|
|
background: var(--color-facebook-blue);
|
|
border-color: transparent;
|
|
}
|
|
|
|
.google {
|
|
background: #ffffff;
|
|
color: #1f1f1f;
|
|
border-color: transparent;
|
|
}
|
|
|
|
.apple {
|
|
background: #000000;
|
|
border-color: rgba(255, 255, 255, 0.2);
|
|
color: #ffffff;
|
|
}
|
|
|
|
.googleSlot {
|
|
display: flex;
|
|
justify-content: center;
|
|
width: 100%;
|
|
min-height: var(--button-height);
|
|
}
|