mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-08-26 08:52:30 +00:00
25 lines
580 B
CSS
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;
|
|
}
|