ducky/web

Paddy 2015-05-29 Parent:99a43a6d1d30

3:7ae5dd64c482 Go to Latest

ducky/web/src/styles/base/_tables.scss

Stop ignoring our build folder. Now that our HTML lives in our build folder, we should probably stop ignoring it. This means that an `hg clone` followed by an `npm install` followed by an `npm run deploy` will work. I hope.

History
1 table {
2 @include font-feature-settings("kern", "liga", "tnum");
3 border-collapse: collapse;
4 margin: $small-spacing 0;
5 table-layout: fixed;
6 width: 100%;
7 }
9 th {
10 border-bottom: 1px solid darken($base-border-color, 15%);
11 font-weight: 600;
12 padding: $small-spacing 0;
13 text-align: left;
14 }
16 td {
17 border-bottom: $base-border;
18 padding: $small-spacing 0;
19 }
21 tr,
22 td,
23 th {
24 vertical-align: middle;
25 }