first commit

This commit is contained in:
sajjadtalkhabi
2026-05-13 01:43:05 +03:30
commit d2a577f254
297 changed files with 36274 additions and 0 deletions
+53
View File
@@ -0,0 +1,53 @@
<template>
<div class="line-title">
<span class="line-title__bar" />
<div class="line-title__text">
<p class="line-title__fa">{{ title }}</p>
<p v-if="titleEn" class="line-title__en">{{ titleEn }}</p>
</div>
</div>
</template>
<script setup>
defineProps({
title: { type: String, default: '' },
titleEn: { type: String, default: '' },
})
</script>
<style lang="scss" scoped>
.line-title {
display: flex;
flex-direction: row;
align-items: center;
gap: 0.625rem;
padding: 0.75rem 0;
&__bar {
background-color: var(--color-primary);
box-shadow: 0 1px 2px rgba(0, 0, 0, 5%);
border-radius: 1rem;
height: 1.9rem;
width: 0.375rem;
flex-shrink: 0;
}
&__text {
text-align: right;
}
&__fa {
font-family: var(--font-family-fa);
font-weight: 500;
font-size: 0.875rem;
margin: 0;
}
&__en {
font-family: var(--font-family-en);
font-weight: 300;
font-size: 0.75rem;
margin: 0;
}
}
</style>