Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
2 changes: 1 addition & 1 deletion app/components/Input/Base.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ defineExpose({
v-bind="props.noCorrect ? noCorrect : undefined"
@focus="emit('focus', $event)"
@blur="emit('blur', $event)"
class="appearance-none bg-bg-subtle border border-border font-mono text-fg placeholder:text-fg-subtle transition-[border-color,outline-color] duration-300 hover:border-fg-subtle outline-2 outline-transparent outline-offset-2 focus:border-accent focus-visible:outline-accent/70 disabled:(opacity-50 cursor-not-allowed)"
class="appearance-none bg-bg-subtle border border-border font-mono text-fg placeholder:text-fg-subtle transition-[border-color,outline-color] duration-300 hover:border-fg-subtle outline-2 outline-transparent outline-offset-2 focus:border-accent focus-visible:outline-accent/70 disabled:(opacity-80 cursor-not-allowed)"
Comment thread
iiio2 marked this conversation as resolved.
Outdated
:class="{
'text-xs leading-[1.2] px-2 py-2 rounded-md': size === 'small',
'text-sm leading-none px-3 py-2.5 rounded-lg': size === 'medium',
Expand Down
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-2.3 font-mono text-sm transition-colors rounded-s-lg',
Comment thread
iiio2 marked this conversation as resolved.
Outdated
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-2.3 font-mono text-sm 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