mirror of
https://github.com/modrinth/code.git
synced 2026-08-31 12:05:53 +00:00
fix: app library post release (#7211)
* fix: fixed height on modal * fix: conditional auto padding being applied on user avatars * feat: allow ungrouped to be dragged * feat: add drag handle to resize num items in jump in * qa * feat: add context menu submenus * feat: hook up icon editing in sub menu * fix: breadcrumb and sidebar not matching * fix: bring back signal icon for ping and players online * feat: add compact mode for library * smaller checkmark * pnpm prepr * feat: bring back loader/game version sort * add loader symbols * refactor: compact mode with sync'd app settings * pnpm prepr * move loaders up * qa * feat: exclude loaders from randomizing
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
circle: circle,
|
||||
detecting: !hasDetectedCorners,
|
||||
'no-shadow': noShadow,
|
||||
padded: hasTransparentCorners,
|
||||
padded: hasTransparentCorners && !circle && !disableConditionalIconPadding,
|
||||
raised: raised,
|
||||
pixelated: pixelated,
|
||||
}"
|
||||
@@ -72,6 +72,7 @@ const props = withDefaults(
|
||||
size?: string
|
||||
circle?: boolean
|
||||
noShadow?: boolean
|
||||
disableConditionalIconPadding?: boolean
|
||||
loading?: 'eager' | 'lazy'
|
||||
raised?: boolean
|
||||
tintBy?: string | null
|
||||
@@ -82,6 +83,7 @@ const props = withDefaults(
|
||||
size: '2rem',
|
||||
circle: false,
|
||||
noShadow: false,
|
||||
disableConditionalIconPadding: false,
|
||||
loading: 'eager',
|
||||
raised: false,
|
||||
tintBy: null,
|
||||
|
||||
Reference in New Issue
Block a user