@feedinbox/cli
Version:
CLI tool for installing FeedInbox components into your project
66 lines (57 loc) • 1.26 kB
CSS
/* Contact Widget Styles */
.feedinbox-contact-button {
background: #10b981;
color: white;
border: none;
padding: 12px 24px;
border-radius: 8px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: all 0.2s ease;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.feedinbox-contact-button:hover {
background: #059669;
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
.feedinbox-contact-button:active {
transform: translateY(0);
}
/* Large modal for contact form */
.feedinbox-modal-large {
max-width: 600px ;
width: 90vw ;
}
/* Form row for first/last name */
.feedinbox-form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;
margin-bottom: 16px;
}
/* Dark theme */
[data-theme="dark"] .feedinbox-contact-button {
background: #1f2937;
color: #f3f4f6;
}
[data-theme="dark"] .feedinbox-contact-button:hover {
background: #374151;
}
/* Responsive */
@media (max-width: 640px) {
.feedinbox-contact-button {
width: 100%;
padding: 14px 20px;
}
.feedinbox-modal-large {
width: 95vw ;
max-width: none ;
margin: 10px;
}
.feedinbox-form-row {
grid-template-columns: 1fr;
gap: 16px;
}
}