goumsss Claude Opus 4.8 commited on
Commit
aa5f2e5
·
1 Parent(s): 7e55dd0

Fix place picker to 6 columns (was hardcoded to 5)

Browse files

The #place-picker grid was still repeat(5, 52px) from the old 10-place
layout, so 18 places wrapped as 5/row. Now repeat(6) → clean 3×6 grid.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -459,7 +459,7 @@ CSS = """
459
  justify-content: center !important; justify-items: center !important;
460
  }
461
  #animal-picker .wrap { grid-template-columns: repeat(6, 52px) !important; }
462
- #place-picker .wrap { grid-template-columns: repeat(5, 52px) !important; }
463
  .emoji-group label {
464
  width: 52px !important; height: 52px !important;
465
  display: flex !important; align-items: center !important; justify-content: center !important;
 
459
  justify-content: center !important; justify-items: center !important;
460
  }
461
  #animal-picker .wrap { grid-template-columns: repeat(6, 52px) !important; }
462
+ #place-picker .wrap { grid-template-columns: repeat(6, 52px) !important; }
463
  .emoji-group label {
464
  width: 52px !important; height: 52px !important;
465
  display: flex !important; align-items: center !important; justify-content: center !important;