Skip to content

Commit

Permalink
app restructuring
Browse files Browse the repository at this point in the history
  • Loading branch information
whkelvin committed Dec 26, 2024
1 parent f5702d9 commit ba45159
Show file tree
Hide file tree
Showing 25 changed files with 799 additions and 162 deletions.
106 changes: 36 additions & 70 deletions src/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,39 +4,6 @@

@layer base {
:root {
/*--background: 100 100% 100%;*/
--foreground: 240 10% 3.9%;
--background: 218 27% 100%;
--card: 218 27% 100%;
--card-foreground: 240 10% 3.9%;
--popover: 0 0% 100%;
--popover-foreground: 240 10% 3.9%;
--primary: 193 43% 67%;
--primary-foreground: 100 100% 100%;
/*--secondary: 240 5.9% 90%;*/
--secondary-foreground: 240 5.9% 10%;
--muted: 240 5.9% 90%;
--muted-foreground: 240 3.8% 46.1%;
/*--accent: 179 25% 65%;*/
--accent: 179 25% 50%;
--accent-foreground: 100 100% 100%;
--destructive: 354 42% 56%;
--destructive-foreground: 0 0% 98%;
--border: 240 5.9% 90%;
--input: 240 5.9% 90%;
--ring: 193 43% 67%;
--radius: 0.5rem;
--sidebar-background: 0 0% 98%;
--sidebar-foreground: 240 5.3% 26.1%;
--sidebar-primary: 240 5.9% 10%;
--sidebar-primary-foreground: 0 0% 98%;
--sidebar-accent: 240 4.8% 95.9%;
--sidebar-accent-foreground: 240 5.9% 10%;
--sidebar-border: 220 13% 91%;
--sidebar-ring: 217.2 91.2% 59.8%;
}

.dark {
--background: 219 33% 14%;
--foreground: 0 0% 95%;
--card: 221 35% 14%;
Expand Down Expand Up @@ -77,6 +44,42 @@
}
}

div::-webkit-scrollbar {
width: 6px;
}

div::-webkit-scrollbar-track {
background-color: transparent;
}

div::-webkit-scrollbar-thumb {
background-color: hsl(var(--muted-foreground));
border-radius: 20px;
}
div::-webkit-scrollbar-corner {
background-color: hsl(var(--muted-foreground));
}

textarea::-webkit-scrollbar {
width: 6px;
}

textarea::-webkit-scrollbar-track {
background-color: transparent;
}

textarea::-webkit-scrollbar-thumb {
background-color: hsl(var(--muted-foreground));
border-radius: 20px;
}
textarea::-webkit-scrollbar-corner {
background-color: hsl(var(--muted-foreground));
}

::selection {
color: hsl(var(--background));
background: hsl(var(--primary));
}
pre code {
width: 100%;
}
Expand Down Expand Up @@ -551,40 +554,3 @@ code.hljs {
.language-yaml .hljs-meta {
color: #d08770;
}

div::-webkit-scrollbar {
width: 6px;
}

div::-webkit-scrollbar-track {
background-color: transparent;
}

div::-webkit-scrollbar-thumb {
background-color: hsl(var(--muted-foreground));
border-radius: 20px;
}
div::-webkit-scrollbar-corner {
background-color: hsl(var(--muted-foreground));
}

textarea::-webkit-scrollbar {
width: 6px;
}

textarea::-webkit-scrollbar-track {
background-color: transparent;
}

textarea::-webkit-scrollbar-thumb {
background-color: hsl(var(--muted-foreground));
border-radius: 20px;
}
textarea::-webkit-scrollbar-corner {
background-color: hsl(var(--muted-foreground));
}

::selection {
color: hsl(var(--background));
background: hsl(var(--primary));
}
Loading

0 comments on commit ba45159

Please sign in to comment.