Skip to content
#

review

Code review is systematic examination (sometimes referred to as peer review) of computer source code. It is intended to find mistakes overlooked in software development, improving the overall quality of software. Reviews are done in various forms such as pair programming, informal walkthroughs, and formal inspections.

Here are 496 public repositories matching this topic...

rkclark
rkclark commented May 23, 2018

This CSS is used in various places:

  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  font-weight: normal;

It should be extracted into a global css class and added to a new file src/css/fonts.css, from which the class can then be imported into each css module where it is needed, like this example:

/* import global css file */
@import "../../css/grid.c
Wikipedia
Wikipedia

Related Topics

gerrit
You can’t perform that action at this time.