- Introduced ModalDestinationButton for destination selection with customizable icons and labels. - Added ModalInput for text input with optional character counter. - Implemented ModalLink for reusable links styled as underlined text. - Created ModalPlatformCard for platform selection with badges. - Developed ModalRadioGroup for radio button groups with custom styling. - Added ModalSection for grouping modal content with optional labels. - Implemented ModalSelect for dropdown selections with custom styling. - Created ModalShareButtons for sharing options via Gmail, Email, and Messenger. - Developed ModalTextarea for multi-line text input with character counter. - Introduced ModalToggle for toggle switches with optional help text and links. - Updated README.md with component descriptions, usage examples, and design guidelines. - Added index.ts for centralized exports of modal components.
22 lines
271 B
CSS
22 lines
271 B
CSS
/* ModalSection - Section grouping for modal content */
|
|
|
|
.section {
|
|
width: 100%;
|
|
}
|
|
|
|
.label {
|
|
color: #5f6368;
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
margin: 0 0 12px 0;
|
|
}
|
|
|
|
.content {
|
|
width: 100%;
|
|
}
|
|
|
|
/* Dark mode */
|
|
[data-theme="dark"] .label {
|
|
color: #9aa0a6;
|
|
}
|