Skip to content
This repository was archived by the owner on Jan 28, 2026. It is now read-only.

Commit 6d2c101

Browse files
Merge branch 'LastBranch' into development
2 parents b6dc1dd + a6907b1 commit 6d2c101

4 files changed

Lines changed: 844 additions & 820 deletions

File tree

frontend/src/assets/styles/position.module.css

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -211,20 +211,27 @@
211211

212212
.indicatorGrid {
213213
display: grid;
214-
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
215-
gap: 1rem;
214+
grid-template-columns: repeat(2, 1fr);
215+
gap: 2rem;
216+
max-width: 600px;
217+
margin: 0 auto;
216218
}
217219

218220
.indicator {
219221
display: flex;
220222
justify-content: space-between;
221223
align-items: center;
222-
padding: 0.75rem 0;
223-
border-bottom: 1px solid #e2e8f0;
224+
padding: 1.5rem;
225+
background: #f8fafc;
226+
border: 1px solid #e2e8f0;
227+
border-radius: 0.5rem;
228+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
229+
transition: all 0.2s ease;
224230
}
225231

226-
.indicator:last-child {
227-
border-bottom: none;
232+
.indicator:hover {
233+
transform: translateY(-2px);
234+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
228235
}
229236

230237
.indicatorLabel {
@@ -405,7 +412,14 @@
405412
}
406413

407414
:global(.dark) .indicator {
408-
border-bottom: 1px solid #404040;
415+
background: #1a1a1a;
416+
border: 1px solid #404040;
417+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
418+
}
419+
420+
:global(.dark) .indicator:hover {
421+
transform: translateY(-2px);
422+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
409423
}
410424

411425
:global(.dark) .indicatorLabel {

frontend/src/components/shared/ResearchLeadershipAnalysis/ResearchLeadershipAnalysis.jsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@ const ResearchLeadershipAnalysis = ({ papers, searchQuery }) => {
134134
<div key={country.country} className={styles.statItem}>
135135
<div className={styles.rank}>{index + 1}</div>
136136
<div className={styles.flag}>
137-
<img
138-
src={getCountryFlag(country.country)}
137+
<img
138+
src={getCountryFlag(country.country)}
139139
alt={country.country}
140140
onError={(e) => e.target.style.display = 'none'}
141141
/>
@@ -177,7 +177,7 @@ const ResearchLeadershipAnalysis = ({ papers, searchQuery }) => {
177177
</div>
178178

179179
{/* Research Trends */}
180-
<div className={styles.analysisCard}>
180+
{/* <div className={styles.analysisCard}>
181181
<h4>📈 Research Trends</h4>
182182
<div className={styles.trendsContainer}>
183183
{yearlyTrends.map(year => (
@@ -190,10 +190,10 @@ const ResearchLeadershipAnalysis = ({ papers, searchQuery }) => {
190190
</div>
191191
))}
192192
</div>
193-
</div>
193+
</div> */}
194194

195195
{/* Summary Stats */}
196-
<div className={styles.analysisCard}>
196+
{/* <div className={styles.analysisCard}>
197197
<h4>📊 Summary</h4>
198198
<div className={styles.summaryStats}>
199199
<div className={styles.summaryItem}>
@@ -219,7 +219,7 @@ const ResearchLeadershipAnalysis = ({ papers, searchQuery }) => {
219219
<div className={styles.summaryLabel}>Institutions</div>
220220
</div>
221221
</div>
222-
</div>
222+
</div> */}
223223
</div>
224224
)}
225225
</div>

0 commit comments

Comments
 (0)