Skip to content

Commit 83af9d4

Browse files
committed
Design Changes
1 parent 5a3186b commit 83af9d4

File tree

9 files changed

+31
-11
lines changed

9 files changed

+31
-11
lines changed

src/assets/GraphScript.png

124 KB
Loading

src/components/commons/Input/style.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
}
1515

1616
.glass-input:focus {
17-
outline: 0.25rem solid var(--color-primary);
17+
border-color: var(--color-secondary);
1818
}
1919

src/components/window/AppWindow/style.css

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,14 @@
44
height: 100%;
55
display: flex;
66
flex-direction: column;
7-
padding: 2rem;
7+
padding: 0.5rem;
88
padding-top: 0.5rem;
9-
background: var(--window-background);
9+
background: linear-gradient(
10+
to bottom right,
11+
var(--color-primary),
12+
var(--color-secondary),
13+
var(--color-tertiary)
14+
);
1015
gap: 0.5rem;
1116
}
1217

src/components/window/Pallete/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ export function Pallete({
2828
>
2929
<Input
3030
value={query}
31+
placeholder="App Pallete"
3132
onChange={(e) => setQuery(e.target.value)}
3233
/>
3334

src/components/window/Pallete/style.css

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,10 @@
3737
background-color: var(--color-black);
3838
display: flex;
3939
align-items: center;
40-
padding: 0.25rem;
41-
gap: 0.125rem;
42-
height: 1.5rem;
40+
padding: 0.5rem;
41+
gap: 0.5rem;
42+
height: 2.5rem;
43+
opacity: 0.5;
4344
border-radius: 0.5rem;
4445
cursor: pointer;
4546
width: 100%;
@@ -48,6 +49,7 @@
4849

4950
.suggestion:hover {
5051
scale: 1.05;
52+
opacity: 1;
5153
}
5254

5355
.suggestion-icon {
@@ -69,3 +71,11 @@
6971
font-size: 0.75rem;
7072
}
7173

74+
.root-app-window:not(.is-desktop) .app-navigator input {
75+
background: var(--color-black);
76+
}
77+
78+
.root-app-window:not(.is-desktop) .app-navigator .suggestion {
79+
border: 0.1rem solid var(--color-white);
80+
}
81+

src/styles/variables.css

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
:root {
2-
--window-background: #1a1a1f;
2+
--color-primary: #A15EFF;
3+
--color-secondary: #D65EBA;
4+
--color-tertiary: #FF7E47;
35

4-
--color-background: #2a2a30;
5-
--color-primary: #FF9800;
6-
76
--color-black: #000000;
87
--color-white: #FFFFFF;
98
--color-gray: #808080;
10-
9+
1110
--color-danger: #FF4C4C;
1211
--color-success: #4CAF50;
1312
--color-warning: #FF9800;
13+
14+
--color-background: #111111;
1415
}
1516

tsconfig.app.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
/* Add these: */
2727
"baseUrl": ".",
2828
"paths": {
29+
"@assets/*": ["src/assets/*"],
2930
"@components/*": ["src/components/*"],
3031
"@defs/*": ["src/defs/*"],
3132
"@utils/*": ["src/utils/*"],

tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"target": "esnext",
1212
"baseUrl": ".",
1313
"paths": {
14+
"@assets/*": ["src/assets/*"],
1415
"@components/*": ["src/components/*"],
1516
"@defs/*": ["src/defs/*"],
1617
"@utils/*": ["src/utils/*"],

vite.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ export default defineConfig({
1616
},
1717
resolve: {
1818
alias: {
19+
'@assets': path.resolve(__dirname, 'src/assets'),
1920
'@components': path.resolve(__dirname, 'src/components'),
2021
'@defs': path.resolve(__dirname, 'src/defs'),
2122
'@utils': path.resolve(__dirname, 'src/utils'),

0 commit comments

Comments
 (0)