Update app.py
Browse files
app.py
CHANGED
@@ -994,11 +994,16 @@ with gr.Blocks(
|
|
994 |
/* โก ํญ ๋ฒํผ์ ์ค๋ฐ๊ฟ ์์ด ๊ณ ์ ํญ์ผ๋ก */
|
995 |
.tab-nav button {
|
996 |
flex: 0 0 auto !important;
|
997 |
-
font-size:
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|
1118 |
-
("๐ Conceptual
|
1119 |
-
("๐ Sound
|
1120 |
-
("๐ Linguistic
|
1121 |
-
("๐ญ Archetype
|
1122 |
-
("โ
Jobs-to
|
1123 |
-
("๐ง SCAMPER
|
1124 |
-
("๐ญ Design
|
1125 |
("๐ฟ Biomimicry", "biomimicry"),
|
1126 |
-
("๐ง Cognitive
|
1127 |
-
("โก Von
|
1128 |
-
("๐ Network
|
1129 |
("๐งฌ Memetics", "memetics"),
|
1130 |
-
("๐จ Color
|
1131 |
-
("๐๏ธ 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:
|