-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
UI-396: updated some packages to fix vulnerabilities (#372)
- Loading branch information
1 parent
76da969
commit 5482c87
Showing
4 changed files
with
629 additions
and
404 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,43 @@ | ||
<script setup lang="ts"> | ||
import 'uno.css'; | ||
import '../assets/main.css'; | ||
import { ref } from 'vue'; | ||
import { RichText } from '~/components'; | ||
const content = ref(); | ||
</script> | ||
|
||
<template> | ||
<div class="container"> | ||
<p class="testfont"> | ||
خط الكوفي العربي1234 | ||
</p> | ||
<p class="testfont"> | ||
Hello it's me AA BB Balance | ||
</p> | ||
<p class="testtokens"> | ||
Hello it's me AA BB Balance | ||
1234 | ||
</p> | ||
<RichText v-model="content" /> | ||
</div> | ||
</template> | ||
|
||
<style scoped> | ||
.testfont { | ||
font-family: var(--font-family); | ||
.container { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
width: 100vw; | ||
height: 100vh; | ||
gap: 40px; | ||
} | ||
.container .row { | ||
display: flex; | ||
flex-direction: column; | ||
gap: 300px; | ||
width: 80%; | ||
} | ||
.container .row > div { | ||
flex: 1; | ||
} | ||
.testtokens { | ||
font: var(--display-md-regular); | ||
.container .row > div span { | ||
margin: 0; | ||
color: var(--gray-900); | ||
font: var(--text-sm-medium); | ||
} | ||
</style> |
Oops, something went wrong.