Skip to content

Commit

Permalink
fix: corrected width
Browse files Browse the repository at this point in the history
  • Loading branch information
andraasi committed Mar 4, 2025
1 parent 121d25d commit 2f29594
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,10 @@
box-sizing: border-box;
display: grid;
// this allows auto column wrap when there is no horizontal space
grid-template-columns: repeat(auto-fit, minmax(84px, auto));
grid-template-columns: repeat(auto-fit, minmax(44px, auto));
padding: 1em;
gap: 0.5em;
min-width: 150px;

.sub-1 {
width: 100%;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -361,8 +361,8 @@ export function create8(component: KupCard): VNode {
<FImage
id="image1"
{...imageArray[0]}
sizeX="64px"
sizeY="64px"
sizeX="44px"
sizeY="44px"
></FImage>
) : (
<div class="sub-spinner">
Expand Down

0 comments on commit 2f29594

Please sign in to comment.