Skip to content

Commit

Permalink
#234 fix inversed li a tags
Browse files Browse the repository at this point in the history
  • Loading branch information
John Ouellet committed Oct 13, 2020
1 parent fb5a5b8 commit 7766701
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 30 deletions.
59 changes: 32 additions & 27 deletions site/.vuepress/theme/components/TagGrid.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@
v-for="(tagGroup, index) in strategy"
:key="index"
>
<a
<li
v-for="tag in tagGroup"
:key="tag.tag"
:href="`${prefix}${tag.tag}`"
><li>{{ tag.name }}</li></a>
>
<a :href="`${prefix}${tag.tag}`">{{ tag.name }}</a>
</li>
</ul>
</div>
<div class="tag-item tag-third">
Expand All @@ -19,11 +20,12 @@
v-for="(tagGroup, index) in design"
:key="index"
>
<a
<li
v-for="tag in tagGroup"
:key="tag.tag"
:href="`${prefix}${tag.tag}`"
><li>{{ tag.name }}</li></a>
>
<a :href="`${prefix}${tag.tag}`">{{ tag.name }}</a>
</li>
</ul>
</div>
<div class="tag-item tag-third">
Expand All @@ -32,11 +34,12 @@
v-for="(tagGroup, index) in development"
:key="index"
>
<a
<li
v-for="tag in tagGroup"
:key="tag.tag"
:href="`${prefix}${tag.tag}`"
><li>{{ tag.name }}</li></a>
>
<a :href="`${prefix}${tag.tag}`">{{ tag.name }}</a>
</li>
</ul>
</div>
<div class="tag-item tag-full">
Expand All @@ -45,11 +48,12 @@
v-for="(tagGroup, index) in industry"
:key="index"
>
<a
<li
v-for="tag in tagGroup"
:key="tag.tag"
:href="`${prefix}${tag.tag}`"
><li>{{ tag.name }}</li></a>
>
<a :href="`${prefix}${tag.tag}`">{{ tag.name }}</a>
</li>
</ul>
</div>
<div class="tag-item tag-full-columns">
Expand All @@ -58,11 +62,12 @@
v-for="(tagGroup, index) in technology"
:key="index"
>
<a
<li
v-for="tag in tagGroup"
:key="tag.tag"
:href="`${prefix}${tag.tag}`"
><li>{{ tag.name }}</li></a>
>
<a :href="`${prefix}${tag.tag}`">{{ tag.name }}</a>
</li>
</ul>
</div>

Expand All @@ -72,11 +77,12 @@
v-for="(tagGroup, index) in other"
:key="index"
>
<a
<li
v-for="tag in tagGroup"
:key="tag.tag"
:href="`${prefix}${tag.tag}`"
><li>{{ tag.name }}</li></a>
>
<a :href="`${prefix}${tag.tag}`">{{ tag.name }}</a>
</li>
</ul>
</div>
</div>
Expand Down Expand Up @@ -180,21 +186,20 @@ export default {
line-height inherit
ol, ul
list-style none
padding 0em .5em
a
text-decoration none
border-bottom solid 1px $borderColor
:hover
color $tandemPink
transition all .2s
padding 0 .5em
li
border-bottom solid 1px $borderColor
margin 1.5em 2em
border-bottom solid 1px $borderColor
a
font-family "AvenirNext", "Helvetica Neue", Arial, sans-serif
font-weight 300
font-size 1.13rem
letter-spacing -1.44px
font-family "AvenirNext", "Helvetica Neue", Arial, sans-serif
color $middleGrey
text-decoration none
&:hover
color $tandemPink
transition all .2s
&.tag-third
width 32%
padding-bottom 1em
Expand Down
3 changes: 0 additions & 3 deletions site/.vuepress/theme/layouts/About.vue
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,6 @@ export default {
font-weight 300
font-size 1.33rem
letter-spacing -1.04px
white-space: break-spaces
&.important
padding 7em 0
border-bottom 1px solid $borderColor
Expand All @@ -182,8 +181,6 @@ export default {
p
&.custom-block-title
font-size 3.64em
letter-spacing -0.0265em
line-height 1.265
font-family GalaxieCopernicus, PT Serif, serif
@media (max-width: $MQMobile)
font-size 2.1em
Expand Down

0 comments on commit 7766701

Please sign in to comment.