Skip to content

Commit

Permalink
fix: align th, as well
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Clemens committed Jun 28, 2018
1 parent f899920 commit 81d3e21
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 14 deletions.
18 changes: 10 additions & 8 deletions webserver/web/src/css/custom.scss
Original file line number Diff line number Diff line change
Expand Up @@ -225,16 +225,18 @@ table.is-middle td, table.is-middle th {
margin-bottom: 0;
}

td[align=right] {
text-align: right;
}
th, td {
&[align=right] {
text-align: right !important;
}

td[align=left] {
text-align: left;
}
&[align=left] {
text-align: left !important;
}

td[align=center] {
text-align: center;
&[align=center] {
text-align: center !important;
}
}

// highlight-js-line-numbers
Expand Down
2 changes: 1 addition & 1 deletion webserver/web/static/css/dark-style.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion webserver/web/static/css/dark-style.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion webserver/web/static/css/style.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion webserver/web/static/css/style.css.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions webserver/web/templates/base.html.tera
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
title="dark"
rel="stylesheet alternate"
href="/static/css/dark-style.css?v={{ resources_version }}"
integrity="sha384-0etGSZpQq/b5tfgRGDI83Q3603FI4lzHjo76goEfLSuSGprOzmFxV0NGgwYGR8+X"/>
integrity="sha384-+WfsT+2gMcEksIx4DlMZJNL+4TucChbAldjE/kbjtsOUk9KRU28xX7t1Pe92ncSX"/>
<link
title="light"
rel="stylesheet"
href="/static/css/style.css?v={{ resources_version }}"
integrity="sha384-lIWgzaaY3ALyBzkjZ1D/EobVOijI285t/uSGk5tHkrqHyMqgsfOVg1lYfl1FkSsD"/>
integrity="sha384-eOkJb7JI/5i7Q6RZENutjQw8Ktaxy9aEu/IyPmsX7N3BF/jqdChFxz5ntQ2uXl7j"/>
<script
src="/static/js/style.js?v={{ resources_version }}"
integrity="sha384-Jkt7YLun9UdrUCzwOTcLZcmUpkLflmI9Y/ksdoxa8m7HmpxkETujPoYB/av7Hy5E"></script>
Expand Down

0 comments on commit 81d3e21

Please sign in to comment.