supermemory/apps/web/app/components/twitter/tweet-container.module.css
2025-01-20 17:50:45 -07:00

25 lines
580 B
CSS

.root {
width: 100%;
min-width: 250px;
max-width: 550px;
overflow: hidden;
/* Base font styles */
color: var(--tweet-font-color);
font-family: var(--tweet-font-family);
font-weight: 400;
box-sizing: border-box;
border: var(--tweet-border);
border-radius: 24px;
margin: var(--tweet-container-margin);
background-color: var(--tweet-bg-color);
transition-property: background-color, box-shadow;
transition-duration: 0.2s;
}
.root:hover {
background-color: var(--tweet-bg-color-hover);
}
.article {
position: relative;
box-sizing: inherit;
padding: 0.75rem 1rem;
}