We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47ba58b commit 0928f70Copy full SHA for 0928f70
2 files changed
src/pages/Project.jsx
@@ -33,7 +33,7 @@ export default function Project() {
33
<span className="project-breadcrumb-current">{project.slug}</span>
34
</div>
35
36
- <h1 className="section-title">{project.title}</h1>
+ <h1 className="section-title section-title--case-sensitive">{project.title}</h1>
37
38
<div className="section-body">
39
<p className="project-headline">{project.headline}</p>
src/styles.css
@@ -210,6 +210,10 @@ p {
210
letter-spacing: 0.04em;
211
}
212
213
+.section-title--case-sensitive {
214
+ text-transform: none;
215
+}
216
+
217
.section-body {
218
background: var(--surface);
219
padding: 2rem;
0 commit comments