Skip to content

Commit

Permalink
Standardize width of first columns
Browse files Browse the repository at this point in the history
  • Loading branch information
karmakaze committed Jan 22, 2019
1 parent 098c2ad commit da25ce3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/ListStories.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</th>
</tr>
<tr v-if="day === 0 && stories.length">
<td style="min-width: 1.5em;">
<td>
<div class="sort-score" @click="toggleSort(day, col)">
{{ sortSymbol(col) }}
</div>
Expand Down Expand Up @@ -566,6 +566,9 @@ h1 {
h3 {
margin: 40px 0 0;
}
td:first-child {
min-width: 1.5em;
}
td {
white-space: nowrap;
text-overflow: ellipsis;
Expand Down

0 comments on commit da25ce3

Please sign in to comment.