Commit graph

3 commits

Author SHA1 Message Date
Igor Kuzmenko
4028e39d98 WIP: Refactoring wallets styles to more maintainable structure 2017-07-17 15:32:56 +02:00
Mitchell Cash
c4f33935be
Better table formatting on small screen devices 2017-07-02 21:42:27 +10:00
David A. Harding
a40fb73dab
Layout: render CSS with both "less" and "scss"
This commit renders the same CSS files using both the "less" and "scss"
CSS generation engines so that the results may be compared.  This is a
comparison script:

    old_main_css=$( grep -rl normalize.css _site/*.css )
    new_main_css=_site/css/main.css
    old_rtl_css=$( grep 'Language specific styles that override default' -rl _site/*.css )
    new_rtl_css=_site/css/rtl.css

    (
      diff -ub $old_main_css $new_main_css
      diff -ub $old_rtl_css $new_rtl_css
    )
2017-06-23 11:49:28 -04:00