Fix: Tampilan card icon penduduk menutupi halaman slide - #1112
Open
pandigresik wants to merge 2 commits into
Open
Fix: Tampilan card icon penduduk menutupi halaman slide#1112pandigresik wants to merge 2 commits into
pandigresik wants to merge 2 commits into
Conversation
|
🔄 AI PR Review sedang antri di server...
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix: Tampilan card icon penduduk menutupi halaman slide
Description
Terdapat bug pada halaman website utama di mana card icon penduduk tertutupi oleh section halaman slide (carousel). Akibatnya, bagian atas card icon penduduk tidak terlihat dan tertutup oleh elemen slide yang ada di atasnya. Perbaikan dilakukan dengan menonaktifkan nilai
margin-top: -143pxpada selector CSS.row.over-flow.g-4agar card icon penduduk tidak lagi tertutupi oleh halaman slide.Changes made:
margin-top: -143pxpada selector CSS.row.over-flow.g-4di filepublic/web/css/openkab.cssReason for change:
margin-top: -143pxyang menyebabkan card icon penduduk naik ke atas dan tertutupi oleh elemen slide.Impact of change:
✅ Card icon penduduk tidak lagi tertutupi oleh halaman slide
✅ Tampilan halaman website utama menjadi rapi dan sesuai dengan layout yang diharapkan
✅ Tidak ada perubahan pada struktur HTML atau fungsionalitas, hanya perbaikan pada tampilan CSS
Related Issue
#1111
Steps to Reproduce
Before fix (problem):
After fix (solution):
Testing on related features:
Checklist
Technical Details
Technical Explanation
Perubahan dilakukan dengan menonaktifkan properti CSS
margin-top: -143pxpada selector.row.over-flow.g-4. Sebelumnya, nilai margin-top yang bernilai negatif menyebabkan elemen card icon penduduk naik ke atas hingga tertutupi oleh section slide/carousel. Dengan menonaktifkan nilai tersebut, card icon penduduk akan menempati posisi yang seharusnya tanpa tertutupi elemen lain.Configuration changes
Tidak ada perubahan pada file konfigurasi.
Dependencies added
Tidak ada dependensi baru yang ditambahkan.
Testing
Manual Testing
Automated Testing
Screenshots / Video
simplescreenrecorder-2026-08-13_15.38.50.mp4
Before:
Card icon penduduk tertutupi oleh section slide di bagian atas halaman.
After:
Card icon penduduk tampil dengan benar tanpa tertutupi oleh section slide.
Breaking Changes
Tidak ada breaking changes. Perubahan ini hanya mempengaruhi tampilan (visual) tanpa mengubah struktur data atau API.
Migration Guide
Tidak diperlukan. Perubahan ini hanya pada file CSS dan tidak memerlukan migrasi apapun.
References
Catatan untuk reviewer: Perubahan ini hanya pada satu baris CSS (
margin-top: -143pxmenjadi/*margin-top: -143px;*/) pada filepublic/web/css/openkab.css. Silakan lakukan visual check pada halaman website utama untuk memastikan card icon penduduk tampil dengan benar.