Skip to content

Commit 05d5c92

Browse files
committed
fixed font on about page
1 parent 8560716 commit 05d5c92

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

src/views/AboutView.vue

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<div class="about-me-desc">
44
<p>Hi, I'm <span class="about-name">Chris Pane</span>, software developer and computer science student at NJIT.</p>
55
<!--<p>I enjoy web-dev, full-stack, 3D modeling, game development, and iced coffee.</p>-->
6-
<p>I'm usually doing web-dev, game-dev, 3D modelling, or tweaking my <a target="_blank" :href="vimrc_url" class="text-link">vimrc</a>.</p>
6+
<p>I'm usually doing web-dev, game-dev, 3D modelling, or tweaking my <a target="_blank" :href="vimrc_url" class="vimrc-link">vimrc</a>.</p>
77
</div>
88
<img width="330" :src="require('@/assets/headshot.jpg')" alt="Coco!" />
99
</div>
@@ -51,6 +51,9 @@ export default class AboutView extends Vue {
5151
text-align: center;
5252
font-size: $font-md;
5353
}
54+
@include media(sm, md, lg, xl) {
55+
font-size: inherit;
56+
}
5457
p {
5558
opacity: 0;
5659
animation: slide-up .5s ease-out forwards;
@@ -66,4 +69,11 @@ export default class AboutView extends Vue {
6669
color: $fg;
6770
font-weight: bold;
6871
}
72+
73+
.vimrc-link {
74+
color: $fg;
75+
text-decoration: none;
76+
&:visited {}
77+
&:active {}
78+
}
6979
</style>

0 commit comments

Comments
 (0)