Files
sitemente/public/extensions/hookd/content.css
T
horus d5575b58e3 SiteMente - AI-Powered Lead Generation Platform
Features:
- Mission Control dashboard
- HP Submissions tracking
- AI Agents integration
- Lead management CRM
- Marketing email templates
- Chrome extension support

Tech: Next.js, TypeScript, Tailwind CSS, MySQL
2026-03-19 17:38:12 +01:00

29 lines
492 B
CSS

/* Content script styles for X.com */
/* Hover effect on tweets */
[data-testid="tweet"]:hover .hookd-checkbox {
display: flex !important;
}
/* Save button hover */
.hookd-save-btn:hover {
opacity: 1 !important;
transform: scale(1.1);
}
/* Notification animation */
@keyframes hookd-slide-in {
from {
transform: translateY(100%);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
#hookd-floating-bar {
animation: hookd-slide-in 0.3s ease-out;
}