forked from alshedivat/al-folio
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes "General Information" section of CV in dark mode (alshedivat#1432)
When the dark mode is default, or if you set the page to dark mode and then refresh, the content in "General Information" can't be seen. This PR fixes the problem.
- Loading branch information
1 parent
ba9685f
commit 98fba55
Showing
3 changed files
with
38 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<table class="table table-sm table-borderless table-responsive"> | ||
{% for content in entry.contents %} | ||
<tr> | ||
<td class="p-1 pr-2 font-weight-bold"><b>{{ content.name }}</b></td> | ||
<td class="p-1 pl-2 font-weight-light text">{{ content.value }}</td> | ||
</tr> | ||
{% endfor %} | ||
</table> | ||
<table class="table table-sm table-borderless table-responsive table-cv-map"> | ||
{% for content in entry.contents %} | ||
<tr> | ||
<td class="p-1 pr-2 font-weight-bold"><b>{{ content.name }}</b></td> | ||
<td class="p-1 pl-2 font-weight-light text">{{ content.value }}</td> | ||
</tr> | ||
{% endfor %} | ||
</table> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters