more cleanup

This commit is contained in:
KS Jannette
2026-02-11 18:39:52 -05:00
parent 161ae7b7b8
commit d813b3a818
8 changed files with 4 additions and 4 deletions

View File

@@ -1,26 +0,0 @@
.stickies-grid {
display: flex;
flex-wrap: wrap;
gap: 16px;
justify-content: center;
padding: 24px;
}
.clusters-container {
display: flex;
flex-direction: column;
gap: 32px;
padding: 24px 0;
}
.cluster-group {
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 8px;
padding: 16px;
}
.cluster-label {
margin: 0 0 16px 0;
font-size: 1.2em;
font-weight: 600;
}

View File

@@ -2,7 +2,7 @@ import { useGetStickies, useClusterStickies } from '../api/api';
import type { Sticky as StickyType } from '../types/types';
import Sticky from './sticky';
import Button from './button';
import './stickies.css';
import '../styles/stickies.css';
const Stickies = () => {
const { data: stickies, isLoading, error } = useGetStickies();

View File

@@ -1,14 +0,0 @@
.sticky-note {
width: 180px;
min-height: 180px;
padding: 16px;
border-radius: 2px;
box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.15);
font-family: 'Patrick Hand', cursive, system-ui;
font-size: 14px;
line-height: 1.4;
color: #333;
display: flex;
align-items: flex-start;
word-break: break-word;
}

View File

@@ -1,5 +1,5 @@
import type { Sticky as StickyType } from '../types/types';
import './sticky.css';
import '../styles/sticky.css';
const COLOR_MAP: Record<string, string> = {
yellow: '#fdfd96',