oficiodesign / initial-css

MIT License
4 stars 1 forks source link

Convert italic into a mixin #132

Open robsonsobral opened 1 year ago

robsonsobral commented 1 year ago

Since sometimes italic can be set as a different color or weight, it makes sense to set everything at once.

For example, the following:

@mixin italic {
  font-style: italic;
}

Can become:

@mixin italic {
  font-style: normal;
  font-weight: 100;
}