-
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.
[Implementation and Bugfix] Links added and some bugs refined
- Loading branch information
1 parent
19c36a7
commit 6e13a74
Showing
6 changed files
with
105 additions
and
22 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
<!-- | ||
- Copyright © 2024 Independent Society of Knowledge | ||
- This program is free software: you can redistribute it and/or modify | ||
- it under the terms of the GNU General Public License as published by | ||
- the Free Software Foundation, either version 2 of the License, or | ||
- (at your option) any later version. | ||
- | ||
- This program is distributed in the hope that it will be useful, | ||
- but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
- GNU General Public License for more details. | ||
- | ||
- You should have received a copy of the GNU General Public License | ||
- along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
- | ||
- Contact Information: | ||
- Independent Society of Knowledge | ||
- Email: [email protected] | ||
- | ||
- SPDX-License-Identifier: GPL-2.0-or-later | ||
- | ||
- Developed by: Amir H. Ebrahimnezhad (if you helped or your commits are going to be pulled please add your name and email with a comma.) | ||
- Email: [email protected] | ||
- version 1.0.0 | ||
- | ||
--> | ||
|
||
<template> | ||
<div class="flex flex-col gap-4px"> | ||
|
||
<a :href="link"> | ||
<div class="nuke-text-body-02 flex flex-row gap-8px nuke-transition-productive-standard-fast-01 w-fit h-fit items-center | ||
text-primary-50 dark:text-primary-40 | ||
hover:text-primary-60 hover:dark:text-primary-30"> | ||
<div> | ||
{{text}} | ||
</div> | ||
<div class="w-fit h-16px flex justify-end"> | ||
<SvgArrowLeft height="100%"/> | ||
</div> | ||
</div> | ||
</a> | ||
<div class="nuke-text-helper-text-01 text-dark-100 dark:text-light-10" v-if="helper" >{{ helper }}</div> | ||
</div> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import SvgArrowLeft from "@/assets/icons/arrow--right.svg?component" | ||
const props = defineProps<{ | ||
helper?: String, | ||
text: String, | ||
link: string | ||
}>() | ||
</script> | ||
|
||
<style scoped> | ||
|
||
</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