Adds basic fetch

- 🐛 cors
- 🐛 `.env.js`/`ENV`
This commit is contained in:
2026-06-11 16:35:07 +02:00
parent 97983aff87
commit bcb51d5397
9 changed files with 148 additions and 10 deletions
@@ -0,0 +1,28 @@
import { css } from "lit";
export const styles = css`
:host {
list-style: none;
padding: 1rem;
border-bottom: 1px solid #eee;
display: flex;
justify-content: space-between;
align-items: center;
}
.info {
display: flex;
flex-direction: column;
}
.title {
font-weight: bold;
text-decoration: none;
color: var(--primary-color, #007bff);
}
time {
font-size: 0.85rem;
color: #666;
}
`;