-
Notifications
You must be signed in to change notification settings - Fork 0
update ui and add screenshots for calc and assessment to readme #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,5 +19,5 @@ | |
| justify-content: center; | ||
| margin-top: 40px; | ||
| margin-bottom: 20px; | ||
| color: var(--color-text-muted); | ||
| color: #e5e7eb; | ||
| } | ||
|
Comment on lines
20
to
23
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,7 +2,7 @@ | |
|
|
||
| :root { | ||
| /* Neutrals */ | ||
| --color-bg: #f7f5f1; | ||
| --color-bg: #1f2937; | ||
| --color-surface: #ffffff; | ||
| --color-border-subtle: #d6d0c4; | ||
| --color-text-main: #1f2933; | ||
|
|
@@ -28,7 +28,7 @@ body { | |
| font-size: 15px; | ||
| line-height: 1.4; | ||
| background-color: var(--color-bg); | ||
| color: var(--color-text-main); | ||
| color: #f9fafb; | ||
| } | ||
|
Comment on lines
29
to
32
|
||
|
|
||
| body { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changing the border to
10pxwhile keepingwidth: 95vwcan cause the element to exceed the viewport (defaultbox-sizing: content-boxadds border to the specified width), leading to horizontal scrolling on smaller screens. Consider switching this component tobox-sizing: border-box, reducing the width, or using anoutline/shadow effect if the goal is a thick frame without affecting layout.