Skip to content

Commit 7b89367

Browse files
committed
style(project-cards): text title not lower case in the card of the project
1 parent e225d1d commit 7b89367

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

_includes/projects.liquid

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
%}
1313
{% endif %}
1414
<div class="card-body">
15-
<h2 class="card-title text-lowercase">{{ project.title }}</h2>
15+
<h2 class="card-title ">{{ project.title }}</h2>
1616
<p class="card-text">{{ project.description }}</p>
1717
<div class="row ml-1 mr-1 p-0">
1818
{% if project.github %}

_includes/projects_horizontal.liquid

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
{% endif %}
1010
<div class="{% if project.img %}col-md-6{% else %}col-md-12{% endif %}">
1111
<div class="card-body">
12-
<h3 class="card-title text-lowercase">{{ project.title }}</h3>
12+
<h3 class="card-title ">{{ project.title }}</h3>
1313
<p class="card-text">{{ project.description }}</p>
1414
<div class="row ml-1 mr-1 p-0">
1515
{% if project.github %}

0 commit comments

Comments
 (0)