Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Philipp Partosch 46a936d7de added all files to project 2 years ago
..
utils added all files to project 2 years ago
README.md added all files to project 2 years ago
index.js added all files to project 2 years ago

README.md

named-grid-areas-no-invalid

Disallow invalid named grid areas.

a { grid-template-areas:
      "a a a"
      "b b b"; }
/**   ↑
 *  This named grid area */

For a named grid area to be valid, all strings must define:

  • the same number of cell tokens
  • at least one cell token

And all named grid areas that spans multiple grid cells must form a single filled-in rectangle.

Options

true

The following patterns are considered violations:

a { grid-template-areas: "" }
a { grid-template-areas: "a a a"
                         "b b b b"; }
a { grid-template-areas: "a a a"
                         "b b a"; }

The following pattern is not considered a violation:

a { grid-template-areas: "a a a"
                         "b b b"; }