Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ SPDX-License-Identifier: MIT

<div class="w-full flex justify-center mt-5 pb-10">
<div
class="w-full sm:max-w-120 overflow-hidden bg-neutral-50 h-[45px] border border-neutral-200 rounded-full flex items-center gap-2 px-5 cursor-pointer"
class="w-full sm:max-w-120 overflow-hidden bg-neutral-50 h-[45px] border border-neutral-200 hover:bg-neutral-100 transition hover:shadow-xs rounded-full flex items-center gap-2 px-5 cursor-pointer"
@click="isModalOpen = true"
>
<lfx-icon
Expand Down
4 changes: 2 additions & 2 deletions frontend/app/components/modules/explore/views/explore.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Copyright (c) 2025 The Linux Foundation and each contributor.
SPDX-License-Identifier: MIT
-->
<template>
<div class="bg-white">
<div class="container overflow-hidden flex flex-col gap-10 md:gap-16 lg:pb-15 pb-6">
<div class="bg-white lg:!pb-30 pb-20 lg:!-mb-30 -mb-20">
<div class="container overflow-hidden flex flex-col gap-10">
<lfx-explore-header />
<lfx-explore-top-section />
<lfx-explore-source-index-section />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ SPDX-License-Identifier: MIT
</div>
<div class="flex-1 min-w-0">{{ config?.entityLabel }}</div>
<div class="flex-1 min-w-0 text-right flex items-center gap-1.5 justify-end">
{{ config?.metricLabel }}
<div>{{ config?.metricLabel }}</div>
<lfx-tooltip
v-if="config?.metricTooltip"
:content="config?.metricTooltip"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ export const commitActivityConfig: LeaderboardConfig = {
dataDisplay: LfxProjectIntegerRowDisplay,
minimizedDataDisplay: LfxProjectIntegerMinimizedRowDisplay,
entityLabel: 'Project',
metricLabel: 'Commits (12m)',
metricLabel: 'Commits (12M)',
};
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ export const fastestMergersConfig: LeaderboardConfig = {
dataDisplay: LfxProjectDurationRowDisplay,
minimizedDataDisplay: LfxProjectDurationMinimizedRowDisplay,
entityLabel: 'Project',
metricLabel: 'Median time to merge (12m)',
metricLabel: 'Median time to merge (12M)',
};
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ export const fastestRespondersConfig: LeaderboardConfig = {
dataDisplay: LfxProjectDurationRowDisplay,
minimizedDataDisplay: LfxProjectDurationMinimizedRowDisplay,
entityLabel: 'Project',
metricLabel: 'Median time to 1st response (12m)',
metricLabel: 'Median time to 1st response (12M)',
};
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ export const mostActiveContributorsConfig: LeaderboardConfig = {
dataDisplay: LfxProjectIntegerRowDisplay,
minimizedDataDisplay: LfxProjectIntegerMinimizedRowDisplay,
entityLabel: 'Project',
metricLabel: 'Contributors (12m)',
metricLabel: 'Contributors (12M)',
};
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ export const mostActiveOrganizationsConfig: LeaderboardConfig = {
dataDisplay: LfxProjectIntegerRowDisplay,
minimizedDataDisplay: LfxProjectIntegerMinimizedRowDisplay,
entityLabel: 'Project',
metricLabel: 'Organizations (12m)',
metricLabel: 'Organizations (12M)',
};
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ export const top100ContributorsConfig: LeaderboardConfig = {
dataDisplay: LfxContributorRowDisplay,
minimizedDataDisplay: LfxContributorMinimizedRowDisplay,
entityLabel: 'Contributor',
metricLabel: 'Contributions (12m)',
metricLabel: 'Contributions (12M)',
};
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ export const top100OrganizationsConfig: LeaderboardConfig = {
dataDisplay: LfxOrganizationRowDisplay,
minimizedDataDisplay: LfxOrganizationMinimizedRowDisplay,
entityLabel: 'Organization',
metricLabel: 'Contributions (12m)',
metricLabel: 'Contributions (12M)',
};
2 changes: 1 addition & 1 deletion frontend/app/components/shared/layout/footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Copyright (c) 2025 The Linux Foundation and each contributor.
SPDX-License-Identifier: MIT
-->
<template>
<footer class="border-t border-neutral-200 py-10 bg-white mt-30">
<footer class="border-t border-neutral-200 py-10 mt-30 bg-white">
<div class="container">
<div class="flex justify-between pb-10 md:pb-16 gap-x-10 gap-y-15 flex-col xl:flex-row">
<div class="max-w-100">
Expand Down
2 changes: 1 addition & 1 deletion frontend/app/components/shared/layout/search/search.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ SPDX-License-Identifier: MIT
<template>
<div class="search-container">
<div
class="w-full lg:max-w-[6.5rem] xl:max-w-[18rem] 2xl:max-w-[26rem] overflow-hidden bg-neutral-50 h-9 border border-neutral-200 rounded-full hidden sm:flex items-center gap-2 px-3 cursor-pointer"
class="w-full lg:max-w-[6.5rem] xl:max-w-[18rem] 2xl:max-w-[26rem] overflow-hidden bg-neutral-50 h-9 border border-neutral-200 rounded-full hidden sm:flex items-center gap-2 px-3 cursor-pointer hover:bg-neutral-100 transition hover:shadow-xs"
@click="isModalOpen = true"
>
<lfx-icon
Expand Down
2 changes: 1 addition & 1 deletion frontend/app/components/uikit/carousel/carousel.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
@apply relative w-full;

.carousel-container {
@apply sm:overflow-hidden overflow-visible w-full md:py-10 py-8;
@apply sm:overflow-hidden overflow-visible w-full md:pt-10 pt-8;
}

.carousel-track {
Expand Down
Loading