radames commited on
Commit
3ce7b2f
β€’
1 Parent(s): 69aaf93

emojis, max height for results

Browse files
frontend/src/lib/Result.svelte CHANGED
@@ -61,7 +61,7 @@
61
  {/each}
62
  </div>
63
  <svg
64
- class="w-full p-3"
65
  viewBox="0 0 {board[0].length * (p + s) - p} {board.length * (p + s) - p}"
66
  xmlns="http://www.w3.org/2000/svg"
67
  >
 
61
  {/each}
62
  </div>
63
  <svg
64
+ class="w-full p-3 mx-auto max-h-[30vh]"
65
  viewBox="0 0 {board[0].length * (p + s) - p} {board.length * (p + s) - p}"
66
  xmlns="http://www.w3.org/2000/svg"
67
  >
frontend/src/lib/utils.ts CHANGED
@@ -37,11 +37,11 @@ export const colors = {
37
  };
38
 
39
  export const cheersMessages = [
40
- 'Genius',
41
- 'Magnificent',
42
- 'Impressive',
43
- 'Splendid',
44
- 'Great',
45
- 'Phew',
46
- 'Hugging'
47
  ];
 
37
  };
38
 
39
  export const cheersMessages = [
40
+ 'πŸ€— Hugging πŸ€—',
41
+ '🧞 Genius 🧞',
42
+ '🀩 Magnificent 🀩',
43
+ '😲 Impressive 😲',
44
+ '🧚 Splendid 🧚',
45
+ '✳ Great ✳',
46
+ '🍑 Phew 🍑',
47
  ];