Create our global css.
By having a global css, we do not have to write the same CSS property over and over again, also it is the best practice to create consistent CSS.
You can use sketch file as a reference, but also feel free to just create something from scratch.
for example
//this is our main font-color
.main-color{
color:black;
}
.page-padding{
padding:50px 0;
}
Create our global css. By having a global css, we do not have to write the same CSS property over and over again, also it is the best practice to create consistent CSS.
You can use sketch file as a reference, but also feel free to just create something from scratch. for example //this is our main font-color .main-color{ color:black; } .page-padding{ padding:50px 0; }