-
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
UI improvements #27
UI improvements #27
Conversation
@@ -14,7 +15,8 @@ | |||
"format:check": "prettier '**/*.{js,jsx,ts,tsx,html,css,scss,json,yml,md}' --check", | |||
"format": "prettier '**/*.{js,jsx,ts,tsx,html,css,scss,json,yml,md}' --write", | |||
"ng-openapi-gen": "ng-openapi-gen --input openapi.yml --output ./src/app/core/api --indexFile=true", | |||
"lint": "ng lint" | |||
"lint": "ng lint", |
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.
what linter do we use?
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.
Eslint with angular plugins. I did not change anything regarding the linter in this PR. I actually have a draft pr open for the linting, since we currently do not lint the whole project.
<div class="flex flex-col items-start mt-2 h-auto w-full"> | ||
<select | ||
id="format-version-select" | ||
class="inline-block border-2 border-white rounded bg-[#F6ECED] py-3 ps-3 pe-24 focus:outline-0 w-full" |
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.
bg-[#F6ECED] is this a background color?
Is it possible to define colours in tailwind globally?
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.
Yes sure, once we have the full design we should define more stuff
No description provided.