bytemakers / Noteslify

Your Privacy Friendly, Open Source. Alternative to EverNote.
GNU General Public License v3.0
131 stars 81 forks source link

Refactoring CSS #74

Closed devarshishimpi closed 1 year ago

devarshishimpi commented 2 years ago

Kindly note this issue is not assigned to anyone. This issue will be handled by Noteslify Team.

devarshishimpi commented 2 years ago

@khushi818 You remember the issues you were talking about using classes? This issue is for the same.

khushi818 commented 2 years ago

Yes I am doing it

devarshishimpi commented 1 year ago

Partial Fix in https://github.com/dvstechlabs/Noteslify/pull/89

pedropcamellon commented 1 year ago

Hi! I just started looking at app styles and I see in "Noteslify/frontend/src/" two main files: App.css and index.css. What are we using each one for?

khushi818 commented 1 year ago

@Pcamellon hi We are using App.cs to declare global CSS and index.css for toggle purpose for now. This has to be changed. We will be doing it.

pedropcamellon commented 1 year ago

I agree. I will be glad to help

pedropcamellon commented 1 year ago

I think we can move most of the rules, or all of them, in LandingPage.css to index.css.

devarshishimpi commented 1 year ago

I think we can move most of the rules, or all of them, in LandingPage.css to index.css.

You can discuss the same with @khushi818 as this issue will be handled by her.

pedropcamellon commented 1 year ago

I will be listing here some personal suggestions:

.text-left { text-align: left; }


- `flex` class is defined like this:

.flex { display: flex; justify-content: center; align-items: center; height: 100%; }

I prefer:

.flex { display: flex; }

.justify-content-center { justify-content: center; }

.align-items-center { align-items: center; }

devarshishimpi commented 1 year ago

@khushi818

khushi818 commented 1 year ago

@pedropcamellon sorry for the late reply I really like the things you listed. It would be nice to do it this way. I will appreciate your suggestions even more. Thank you for contributing.

devarshishimpi commented 1 year ago

@khushi818 Work with the font size on the landing page

devarshishimpi commented 1 year ago

Issue worked in https://github.com/dvstechlabs/Noteslify/issues/237