diff options
| author | Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> | 2025-10-22 16:09:09 +0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-22 15:09:09 +0300 |
| commit | 4dd315f21f2c204be71ef1859aa2412233420517 (patch) | |
| tree | 95831f985e9cef3a5385f51eafb443121dd069b4 /frontend/src/css/Profile.css | |
| parent | fix/frontend: use API url based on environment (#282) (diff) | |
| download | lphub-4dd315f21f2c204be71ef1859aa2412233420517.tar.gz lphub-4dd315f21f2c204be71ef1859aa2412233420517.tar.bz2 lphub-4dd315f21f2c204be71ef1859aa2412233420517.zip | |
feat/frontend: tidy up records view on mobile (#283)
Diffstat (limited to 'frontend/src/css/Profile.css')
| -rw-r--r-- | frontend/src/css/Profile.css | 30 |
1 files changed, 28 insertions, 2 deletions
diff --git a/frontend/src/css/Profile.css b/frontend/src/css/Profile.css index 2522602..ccf88f4 100644 --- a/frontend/src/css/Profile.css +++ b/frontend/src/css/Profile.css | |||
| @@ -385,7 +385,20 @@ span.titles { | |||
| 385 | padding-left: 10px; | 385 | padding-left: 10px; |
| 386 | padding-right: 10px; | 386 | padding-right: 10px; |
| 387 | margin: 0 10px; | 387 | margin: 0 10px; |
| 388 | min-width: max-content; | 388 | display: flex; |
| 389 | justify-content: flex-end; | ||
| 390 | } | ||
| 391 | |||
| 392 | #profileboard-top>span { | ||
| 393 | display: none; | ||
| 394 | } | ||
| 395 | |||
| 396 | #profileboard-top>div#page-number { | ||
| 397 | display: block; | ||
| 398 | } | ||
| 399 | |||
| 400 | #section3.profile1>hr { | ||
| 401 | display: none; | ||
| 389 | } | 402 | } |
| 390 | 403 | ||
| 391 | .profileboard-record { | 404 | .profileboard-record { |
| @@ -394,8 +407,21 @@ span.titles { | |||
| 394 | padding-right: 10px; | 407 | padding-right: 10px; |
| 395 | margin: 10px; | 408 | margin: 10px; |
| 396 | width: calc(100% - 20px); | 409 | width: calc(100% - 20px); |
| 397 | min-width: max-content; | ||
| 398 | box-sizing: border-box; | 410 | box-sizing: border-box; |
| 411 | grid-template-columns: 28% 14% 9% 24% 5% 18% 0%; | ||
| 412 | } | ||
| 413 | |||
| 414 | .profileboard-record>span:nth-child(7), | ||
| 415 | .profileboard-record>span:nth-child(16), | ||
| 416 | .profileboard-record>span:nth-child(25), | ||
| 417 | .profileboard-record>span:nth-child(34), | ||
| 418 | .profileboard-record>span:nth-child(43) { | ||
| 419 | display: none; | ||
| 420 | } | ||
| 421 | |||
| 422 | .profileboard-record>span>button:has(img[alt="download"]), | ||
| 423 | .profileboard-record>span>button:has(img[alt="demo_id"]) { | ||
| 424 | display: none; | ||
| 399 | } | 425 | } |
| 400 | 426 | ||
| 401 | span.titles { | 427 | span.titles { |