Skip to content

Commit

Permalink
add footer section titles style
Browse files Browse the repository at this point in the history
  • Loading branch information
chukarave committed Jan 12, 2024
1 parent 667cf5a commit aef569d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
1 change: 0 additions & 1 deletion resources/js/Pages/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,6 @@ function showRandom(): void{
</script>

<style lang="scss">
@import '~@wmde/wikit-tokens/dist/_variables.scss';
@import '../../sass/_typography.scss';
#about-description {
Expand Down
8 changes: 7 additions & 1 deletion resources/js/Pages/Layout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
}"
>
<section>
<h2 class="h5">{{ $i18n('mismatch-finder-footer-more-tools') }}</h2>
<h2 class="h5 footer-title">{{ $i18n('mismatch-finder-footer-more-tools') }}</h2>
<p>
<a href="https://query.wikidata.org/querybuilder/">
{{ $i18n('tool-query-builder') }}
Expand Down Expand Up @@ -169,6 +169,7 @@ onBeforeUnmount(() => {

<style lang="scss">
@import "@wikimedia/codex-design-tokens/theme-wikimedia-ui";
@import '../../sass/_typography.scss';
.website {
box-sizing: border-box;
Expand Down Expand Up @@ -237,5 +238,10 @@ onBeforeUnmount(() => {
}
}
}
.footer-title {
@include body-S;
font-weight: $font-weight-bold;
}
}
</style>

0 comments on commit aef569d

Please sign in to comment.