davidmfoley / react-router-modal

Simple modals for react-router 4
MIT License
153 stars 20 forks source link

CSS missing semicolons #19

Closed jenyckee closed 6 years ago

jenyckee commented 6 years ago
(42:15) Missed semicolon

  40 |   }
  41 |   .react-router-modal__container {
> 42 |     position: absolute
     |               ^
  43 |     top: 0;
  44 |     left: 0;
davidmfoley commented 6 years ago

Fixed; thanks!

jenyckee commented 6 years ago

There are more in the same file

davidmfoley commented 6 years ago

Yeah it's a good idea to add trailing semicolons on the last rule in a block. As is, it's valid CSS though.