Some useful tools and interesting code
- https://marksheet.io
- Google and @mdo styleguides
| // Homepage search ============================= | |
| // - #1: Example of column > row stacking: | |
| // http://codepen.io/HugoGiraudel/pen/pkwqH | |
| // - #2: Remove `overflow:hidden` to align input with button | |
| // - #3: flex: 0 1 100%; breaks layout on mobile safari | |
| // width: 100% is required for some reason! | |
| @selectize-color-border: @color-primary; | |
| @selectize-color-item-active-border: @color-primary; | |
| @selectize-border-radius: 0; |
| # editorconfig.org | |
| root = true | |
| [*] | |
| indent_style = tab | |
| end_of_line = lf | |
| charset = utf-8 | |
| trim_trailing_whitespace = true | |
| insert_final_newline = true |
| ################################################################################ | |
| # GLOBAL IGNORE # | |
| ################################################################################ | |
| # You may want to ignore `/build` folder on a case-by-case basis. Most other # | |
| # files should always be ignored. # | |
| # Secrets # | |
| ########### | |
| .env |