openfree commited on
Commit
cd1cf47
ยท
verified ยท
1 Parent(s): b246df5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +20 -15
app.py CHANGED
@@ -994,11 +994,16 @@ with gr.Blocks(
994
  /* โ‘ก ํƒญ ๋ฒ„ํŠผ์€ ์ค„๋ฐ”๊ฟˆ ์—†์ด ๊ณ ์ •ํญ์œผ๋กœ */
995
  .tab-nav button {
996
  flex: 0 0 auto !important;
997
- font-size: 0.85em !important;
 
 
 
 
 
 
998
  padding: 8px 12px !important;
999
  white-space: nowrap !important;
1000
  }
1001
-
1002
  @keyframes pulse {
1003
  0% { opacity: 0.6; }
1004
  50% { opacity: 1; }
@@ -1114,21 +1119,21 @@ with gr.Blocks(
1114
  # 15๊ฐœ ํƒญ ์ƒ์„ฑ
1115
  with gr.Tabs(elem_classes="tab-nav"):
1116
  theories = [
1117
- ("๐ŸŸฆ Square Theory", "square"),
1118
- ("๐Ÿ”€ Conceptual Blending", "blending"),
1119
- ("๐Ÿ”Š Sound Symbolism", "sound"),
1120
- ("๐ŸŒ Linguistic Relativity", "linguistic"),
1121
- ("๐ŸŽญ Archetype Theory", "archetype"),
1122
- ("โœ… Jobs-to-be-Done", "jobs"),
1123
- ("๐Ÿ”ง SCAMPER Method", "scamper"),
1124
- ("๐Ÿ’ญ Design Thinking", "design"),
1125
  ("๐ŸŒฟ Biomimicry", "biomimicry"),
1126
- ("๐Ÿง  Cognitive Load", "cognitive"),
1127
- ("โšก Von Restorff Effect", "vonrestorff"),
1128
- ("๐ŸŒ Network Effects", "network"),
1129
  ("๐Ÿงฌ Memetics", "memetics"),
1130
- ("๐ŸŽจ Color Psychology", "color"),
1131
- ("๐Ÿ‘๏ธ Gestalt Principles", "gestalt")
1132
  ]
1133
 
1134
  for tab_name, theory_key in theories:
 
994
  /* โ‘ก ํƒญ ๋ฒ„ํŠผ์€ ์ค„๋ฐ”๊ฟˆ ์—†์ด ๊ณ ์ •ํญ์œผ๋กœ */
995
  .tab-nav button {
996
  flex: 0 0 auto !important;
997
+ font-size: 1.6em !important; /* ์ด๋ชจ์ง€๋ฅผ ํฌ๊ฒŒ */
998
+ padding: 8px 12px !important;
999
+ white-space: nowrap !important;
1000
+ }
1001
+ .tab-nav button {
1002
+ flex: 0 0 auto !important;
1003
+ font-size: 1.6em !important; /* ์ด๋ชจ์ง€๋ฅผ ํฌ๊ฒŒ */
1004
  padding: 8px 12px !important;
1005
  white-space: nowrap !important;
1006
  }
 
1007
  @keyframes pulse {
1008
  0% { opacity: 0.6; }
1009
  50% { opacity: 1; }
 
1119
  # 15๊ฐœ ํƒญ ์ƒ์„ฑ
1120
  with gr.Tabs(elem_classes="tab-nav"):
1121
  theories = [
1122
+ ("๐ŸŸฆ Square", "square"),
1123
+ ("๐Ÿ”€ Conceptual", "blending"),
1124
+ ("๐Ÿ”Š Sound", "sound"),
1125
+ ("๐ŸŒ Linguistic", "linguistic"),
1126
+ ("๐ŸŽญ Archetype", "archetype"),
1127
+ ("โœ… Jobs-to", "jobs"),
1128
+ ("๐Ÿ”ง SCAMPER", "scamper"),
1129
+ ("๐Ÿ’ญ Design", "design"),
1130
  ("๐ŸŒฟ Biomimicry", "biomimicry"),
1131
+ ("๐Ÿง  Cognitive", "cognitive"),
1132
+ ("โšก Von", "vonrestorff"),
1133
+ ("๐ŸŒ Network", "network"),
1134
  ("๐Ÿงฌ Memetics", "memetics"),
1135
+ ("๐ŸŽจ Color", "color"),
1136
+ ("๐Ÿ‘๏ธ Gestalt", "gestalt")
1137
  ]
1138
 
1139
  for tab_name, theory_key in theories: