more cleanup
This commit is contained in:
@@ -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;
|
||||
}
|
||||
@@ -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();
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user