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

Csghub finetune header fix #785

Merged
merged 2 commits into from
Nov 19, 2024
Merged
Show file tree
Hide file tree
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 frontend/src/components/shared/RepoHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@
height="16"
class="flex-shrink-0"
/>
<a :href="`/models/${props.path}`" class="md:ml-0 text-gray-700 font-normal hover:text-brand-700">
<a :href="`/models/${props.path}`" class="md:ml-0 text-gray-700 text-md font-normal hover:text-brand-700">
{{ path }}
</a>
<SvgIcon
Expand All @@ -182,7 +182,7 @@
height="16"
class="flex-shrink-0 ml-6 md:ml-0"
/>
<span class="text-gray-700 font-normal">{{ resourceName }}</span>
<span class="text-gray-700 font-normal text-md">{{ resourceName }}</span>
</div>
</div>
<div class="leading-[24px] pb-[16px] text-gray-700 md:px-5">{{ desc }}</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
class="max-w-[411px] md:mb-[24px]"
:name="profileName"
></Menu>
<div class="grow flex flex-col gap-[24px] px-6 py-10 border-l md:border-l-0 min-h-[calc(100vh-153px)] min-h-auto">
<div class="grow flex flex-col gap-[24px] px-6 py-10 border-l md:border-l-0 min-h-[calc(100vh-153px)] md:min-h-0">
<div class="max-w-[512px]">
<div class="mb-[16px]">
<h3 class="mb-[4px] text-gray-700 text-xl font-semibold">
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/user_settings/SshKeySettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
:name="name"
>
</Menu>
<div class="grow flex flex-col gap-[24px] px-6 py-10 border-l md:border-l-0 min-h-[calc(100vh-153px)] min-h-auto">
<div class="grow flex flex-col gap-[24px] px-6 py-10 border-l md:border-l-0 min-h-[calc(100vh-153px)] md:min-h-0">
<h3 class="text-gray-700 text-xl font-[600]">SSH Keys</h3>
<button
@click="centerDialogVisible = true"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</Menu>

<!-- API Key list -->
<div class="grow flex flex-col gap-[24px] px-6 py-10 border-l md:border-l-0 min-h-[calc(100vh-153px)] min-h-auto">
<div class="grow flex flex-col gap-[24px] px-6 py-10 border-l md:border-l-0 min-h-[calc(100vh-153px)] md:min-h-0">
<div class="max-w-[512px]">
<div class="mb-[16px]">
<h3 class="mb-[4px] text-gray-700 text-xl font-semibold">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
:name="name"
>
</Menu>
<div class="grow flex flex-col gap-[24px] px-6 py-10 border-l border-l-0 min-h-[calc(100vh-153px)] min-h-auto">
<div class="grow flex flex-col gap-[24px] px-6 py-10 border-l border-l-0 min-h-[calc(100vh-153px)] md:min-h-0">
<div class="max-w-[512px]">
<div class="mb-[16px]">
<h3 class="mb-[4px] text-gray-700 text-xl font-semibold">
Expand Down
Loading