We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52f4cb5 commit a914ce3Copy full SHA for a914ce3
index.html
@@ -104,6 +104,12 @@ <h2>Tables</h2>
104
A simple table would look like this:
105
</p>
106
<table>
107
+ <colgroup>
108
+ <col style="width: 12em;"/>
109
+ <col style="width: 6em;"/>
110
+ <col style="width: 5em;"/>
111
+ <col/>
112
+ </colgroup>
113
<thead>
114
<tr>
115
<th>Make</th>
scss/_tables.scss
@@ -9,6 +9,12 @@ table {
9
table-layout: fixed;
10
width: 100%;
11
12
+ col {
13
+ @media all and (max-width: 1024px) {
14
+ width: auto !important; // sass-lint:disable-line no-important
15
+ }
16
17
+
18
thead {
19
th {
20
border-bottom: .12 * $em solid $gray;
0 commit comments