This repository has been archived on 2026-06-18. You can view files and clone it, but cannot push or open issues or pull requests.
Files
ui-essentials/projects/ui-landing-pages/src/lib/components/conversion/newsletter-signup.component.scss
Jules 2a28a8abbd Complete library submodule standardization and consumer integration
🎯 Major Achievements:
- Standardized 193+ SCSS imports across all libraries
- Created 12 independent Git repositories with clean submodule structure
- Eliminated relative path dependencies for true library portability
- Added comprehensive consumer integration documentation

📦 Libraries Successfully Published:
• ui-design-system (foundation)
• ui-essentials (components)
• shared-utils (utilities)
• auth-client (authentication)
• ui-landing-pages (marketing components)
• ui-code-display (syntax highlighting)
• ui-accessibility (WCAG compliance)
• hcl-studio (color management)
• ui-animations (CSS animations)
• ui-backgrounds (background effects)
• ui-font-manager (typography)
• ui-data-utils (data manipulation)

🔧 Technical Improvements:
- All SCSS imports now use standardized 'ui-design-system/' paths
- Libraries work independently as Git submodules
- Consumer projects can selectively include only needed libraries
- Professional Git history with initial commits for each library
- Updated integration guides with step-by-step workflows

📋 Documentation Added:
- CONSUMER_INTEGRATION_GUIDE.md - Complete setup instructions
- Updated SUBMODULE_INTEGRATION_GUIDE.md - Enhanced with dependency info
- Library-specific README files for all repositories

🚀 Ready for Production:
- All libraries pushed to https://git.sky-ai.com/jules/*
- Clean separation of concerns across library boundaries
- Independent versioning and release cycles possible
- Optimal structure for LLM analysis and maintenance

This completes the monorepo-to-submodule transformation, making the SSuite library ecosystem ready for professional distribution and consumption.

🤖 Generated with Claude Code (https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-12 14:42:01 +10:00

127 lines
1.9 KiB
SCSS

@use 'ui-design-system/src/styles/semantic/index' as *;
.newsletter-signup {
&__content {
width: 100%;
}
&__header {
margin-bottom: 2rem;
}
&__title {
font-size: 1.5rem;
font-weight: bold;
color: #1f2937;
margin-bottom: 0.5rem;
line-height: 1.3;
}
&__description {
font-size: 1rem;
color: #6b7280;
line-height: 1.5;
}
&__success {
padding: 2rem;
}
&__form {
width: 100%;
}
&__privacy {
font-size: 0.875rem;
color: #6b7280;
line-height: 1.4;
margin-top: 1rem;
margin-bottom: 0;
}
}
.success-message {
display: flex;
align-items: center;
gap: 1rem;
padding: 1.5rem;
background: #dcfce7;
border: 1px solid #bbf7d0;
border-radius: 0.5rem;
&__icon {
width: 32px;
height: 32px;
background: #10b981;
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
font-weight: bold;
flex-shrink: 0;
}
&__text {
color: #166534;
font-weight: 500;
line-height: 1.4;
}
}
.form-group {
margin-bottom: 1.5rem;
&:last-child {
margin-bottom: 0;
}
&__error {
margin-top: 0.5rem;
font-size: 0.875rem;
color: #dc2626;
display: flex;
align-items: center;
gap: 0.5rem;
&::before {
content: '';
font-size: 14px;
}
}
}
.email-input {
display: flex;
border-radius: 0.5rem;
border: 2px solid #d1d5db;
background: #ffffff;
transition: border-color 0.2s;
overflow: hidden;
&:focus-within {
border-color: #3b82f6;
}
&__field {
flex: 1;
padding: 1rem;
border: none;
background: transparent;
font-size: 1rem;
color: #1f2937;
outline: none;
&::placeholder {
color: #9ca3af;
}
}
&__button {
border-radius: 0;
min-width: 120px;
font-weight: 600;
white-space: nowrap;
}
}