-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix tools-sidebar padding * fix starts-preview * updated project-info * updated navbar * updated footer * updated audits-page * updated images (high-res) * fix hash-function-form * removed footer of tools-sidebar * fix creare2-address-form * updated og-meta --------- Co-authored-by: Yehor Podporinov <[email protected]>
- Loading branch information
1 parent
59bc4b3
commit 9ae8827
Showing
17 changed files
with
67 additions
and
217 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,23 @@ | ||
<template> | ||
<div class="app-footer"> | ||
<app-button | ||
v-for="(link, index) in links" | ||
:key="`${link.text}-${index}`" | ||
:text="link.text" | ||
:href="link.href" | ||
color="secondary" | ||
modification="text" | ||
/> | ||
<p class="app-footer__item"> | ||
{{ $t('app-footer.license') }} | ||
</p> | ||
</div> | ||
</template> | ||
|
||
<script lang="ts" setup> | ||
import { AppButton } from '#components' | ||
import { config } from '@/config' | ||
import { i18n } from '~/plugins/localization' | ||
const { t } = i18n.global | ||
// TODO: Rename text and change links | ||
const links = [ | ||
{ | ||
text: t('app-footer.link-text'), | ||
href: config.GITHUB_URL, | ||
}, | ||
{ | ||
text: t('app-footer.link-text'), | ||
href: config.GITHUB_URL, | ||
}, | ||
] | ||
</script> | ||
|
||
<style lang="scss" scoped> | ||
.app-footer { | ||
display: flex; | ||
gap: toRem(24); | ||
padding: toRem(24); | ||
padding: toRem(24) var(--app-padding-right) toRem(24) var(--app-padding-left); | ||
justify-content: center; | ||
border-top: toRem(1) solid var(--background-primary-light); | ||
} | ||
.app-footer__item { | ||
color: var(--text-primary-main); | ||
@include p-14-semi-bold; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.