Skip to content

Commit 3d72ab9

Browse files
committed
feat: add initial copilot instructions and enhance input styles for better UI consistency
1 parent 7858ddc commit 3d72ab9

3 files changed

Lines changed: 180 additions & 172 deletions

File tree

.github/copilot-instructions.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
The application is meant to be used by solutions engineers to build demoflows.
2+
Demoflows contain a customer/prospect, a product that will be demoed, a theme for colors, personas that will be used and steps during the demo.
3+
Use vanila js with webpack.
4+
For the UI, use standard Daisy UI components.

css/input.css

Lines changed: 27 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -2,38 +2,42 @@
22
@tailwind components;
33
@tailwind utilities;
44

5-
/* Your custom styles here */
5+
@layer components {
6+
/* Editor layout */
67

7-
/* Ensure the icon-dropdown and icon-item have appropriate dark mode styles */
8+
.tab-content {
9+
@apply block;
10+
}
811

9-
.icon-dropdown {
10-
background-color: #ffffff;
11-
border: 1px solid #d1d5db;
12-
}
1312

14-
.dark .icon-dropdown {
15-
background-color: #1f2937; /* Dark gray */
16-
border-color: #374151;
17-
}
13+
/* Form controls */
14+
.custom-select {
15+
@apply relative w-full;
16+
}
1817

19-
.icon-item {
20-
color: #000000;
21-
padding: 0.5rem;
22-
cursor: pointer;
23-
}
18+
.custom-select button {
19+
@apply select select-bordered w-full flex items-center space-x-2;
20+
}
2421

25-
.dark .icon-item {
26-
color: #ffffff;
27-
}
22+
.dropdown-options {
23+
@apply absolute left-0 top-full w-full mt-1 max-h-60 overflow-y-auto
24+
bg-base-200 border border-base-300 rounded-lg shadow-lg z-50;
25+
}
2826

29-
.icon-item:hover {
30-
background-color: #f3f4f6;
31-
}
27+
/* Icon selector */
28+
.icon-dropdown {
29+
@apply bg-base-200 border border-base-300 rounded-lg;
30+
}
3231

33-
.dark .icon-item:hover {
34-
background-color: #4b5563;
32+
.icon-item {
33+
@apply text-base-content p-2 cursor-pointer hover:bg-base-300 flex items-center gap-2;
34+
}
3535
}
3636

37+
/* Your custom styles here */
38+
39+
/* Ensure the icon-dropdown and icon-item have appropriate dark mode styles */
40+
3741
.icon-preview {
3842
font-size: 24px;
3943
color: #555555;
@@ -43,8 +47,6 @@
4347
color: #d1d5db;
4448
}
4549

46-
47-
4850
/* Logo Management Styles */
4951
.logo-grid {
5052
display: grid;

0 commit comments

Comments
 (0)