-
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Welcome page #52
base: master
Are you sure you want to change the base?
Welcome page #52
Conversation
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.
Overall, i believe it could just be better to have a main app, also used to make the dashboard, with react router dom we could have a /welcome route instead of 10 react apps for a page, so it will reduce the extension build size, also adding pretty animations could improve the ux, and please commit using the following guidelines: https://docs.onruntime.com/contributing/commits
font-size: 48px; | ||
font-weight: 600; | ||
text-align: center; | ||
color: var(--primary); |
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.
it's true that I didn't do it everywhere, but get into the habit of using fallback colors when you use css variables
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.
idk how to do it
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.
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
height: 100vh; |
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.
don't use 100vh because we cant scroll if the window height is low
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.
ok so i don't know how to do it
@@ -0,0 +1,94 @@ | |||
import React from "react"; |
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.
in this file you just dont respect the sizes indicated on the figma
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.
ahbon
@@ -2,6 +2,7 @@ import React from "react"; | |||
import { createRoot } from "react-dom/client"; | |||
|
|||
import Popup from "./Popup"; | |||
import "./index.css"; |
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.
remove it
ça a vraiment rien à voir avec le dashboard |
yes, it's got nothing to do with the dashboard, but we're not going to make 10 react applications in a single extension, so we might as well combine everything in one application and put the dashboard, welcome and settings in it - the only thing that should be separate is the popup, because we can't do otherwise. |
It could be added when the dashboard is made |
Or you can do it now so we can start the dashboard |
|
No description provided.