Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Добавлен эллипс в конец фона + исправлены значения прозрачности … #37

Merged
merged 1 commit into from
Jan 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions src/components/BuiProgress/BuiProgress.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,13 @@ const scaleWidthClass = computed(() => {
<div class="flex items-center max-w-full w-full h-[21px] min-h-[21px] relative">
<div class="flex flex-row z-1 absolute left-0 top-0 w-full min-w-full h-[21px] max-h-[21px]">
<div
class="h-[21px] max-h-[21px] w-[6px] min-w-[6px] rounded-left-cap bg-primary-500/[.2]"
class="h-[21px] max-h-[21px] w-[6px] min-w-[6px] rounded-left-cap bg-primary-500/[.12]"
></div>
<div class="w-full h-[21px] flex-1 relative bg-primary-500/[.12]"></div>
<div class="h-[21px] w-[6px] max-w-[6px] rounded-right-cap bg-primary-500/[.12]"></div>
<div
class="h-[21px] w-[6px] max-w-[6px] ellips bg-primary-500/[.08] absolute right-0 top-0"
></div>
<div class="w-full h-[21px] flex-1 relative bg-primary-500/[.2]"></div>
<div class="h-[21px] w-[6px] max-w-[6px] rounded-right-cap bg-primary-500/[.2]"></div>
</div>

<div class="flex flex-row z-2" :style="scaleWidthClass">
Expand Down
Loading