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 : ui fixes in different places [123] #956

Closed
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
4 changes: 2 additions & 2 deletions src/packages/@library/ui/label/Label.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script lang="ts">
export let number: number;
export let size = "14px";
export let size = "15px";
export let textColor = "text-primary-200";
export let backgroundColor = "bg-secondary-500";
</script>
@@ -9,7 +9,7 @@
class="label d-flex align-items-center justify-content-center {backgroundColor}"
style="height: {size}; width: {size};"
>
<p class="mb-0 {textColor} fw-bold sparrow-fs-8">{number}</p>
<p class="mb-0 {textColor} fw-bold sparrow-fs-10">{number}</p>
</div>

<style>
Original file line number Diff line number Diff line change
@@ -121,7 +121,7 @@

<style>
.navigation__link {
color: var(--text-secondary-300);
color: var( --text-tertiary-100);
background-color: transparent;
border-bottom: 2px transparent;
}
Original file line number Diff line number Diff line change
@@ -220,8 +220,8 @@
<div
class="h-100 position-relative {$requestSplitterDirection ===
'horizontal'
? 'pb-3'
: 'pe-3'}"
? 'pb-4'
: 'pe-4'}"
>
<RequestNavigator
requestStateSection={$tab.property.request?.state
Loading