Skip to content
Open
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
8 changes: 4 additions & 4 deletions app/components/Package/VersionDistribution.vue
Original file line number Diff line number Diff line change
Expand Up @@ -326,13 +326,13 @@ const endDate = computed(() => {
:aria-busy="pending ? 'true' : 'false'"
>
<div class="w-full mb-4 flex flex-col gap-3">
<div class="flex flex-col sm:flex-row gap-3 sm:gap-2 sm:items-end">
<div class="flex flex-col sm:flex-row gap-3 sm:gap-2 sm:items-start">
<div class="flex flex-col gap-1 w-fit sm:shrink-0">
<label class="text-3xs font-mono text-fg-subtle tracking-wide uppercase">
{{ $t('package.versions.distribution_title') }}
</label>
<div
class="flex items-center bg-bg-subtle border border-border rounded-md"
class="flex items-center bg-bg-subtle border border-border rounded-lg"
role="group"
:aria-label="$t('package.versions.distribution_title')"
tabindex="0"
Expand All @@ -341,7 +341,7 @@ const endDate = computed(() => {
<button
type="button"
:class="[
'px-4 py-1.75 font-mono text-sm transition-colors rounded-s-md',
'px-4 py-4 font-mono text-sm leading-none transition-colors rounded-s-lg',
groupingMode === 'major'
? 'bg-accent text-bg font-medium'
: 'text-fg-subtle hover:text-fg hover:bg-bg-subtle/50',
Expand All @@ -356,7 +356,7 @@ const endDate = computed(() => {
<button
type="button"
:class="[
'px-4 py-1.75 font-mono text-sm transition-colors rounded-e-md border-is border-border',
'px-4 py-4 font-mono text-sm leading-none transition-colors rounded-e-lg border-is border-border',
groupingMode === 'minor'
? 'bg-accent text-bg font-medium'
: 'text-fg-subtle hover:text-fg hover:bg-bg-subtle/50',
Expand Down
Loading