-
Notifications
You must be signed in to change notification settings - Fork 2
Ievgien iaroshenko #8
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
base: main
Are you sure you want to change the base?
Conversation
border-radius: 14px; | ||
box-shadow: 0 4px 24px rgba(78, 84, 200, 0.10); | ||
padding: 2rem 2.5rem; | ||
font-family: 'Segoe UI', Arial, sans-serif; |
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 terms of styling, on front-end we are usually trying to combine all fonts, colors, standard paddings, etc, to variables, colors common files.
You can put them in separate files, inside src/styles
folder and then import them here using SCSS, e.g. @use "colors.scss" as colors
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.
If you'll switch to CSS variables (like --main-padding: 8px
), then you can even manipulate them though your code and make cool stuff, such as light/dark themes.
Draft PR.
Yet plan to work on