penambahan notofikasi

This commit is contained in:
baghizadizn 2025-11-10 15:07:48 +07:00
parent 753e579335
commit 5c37c28cad
2 changed files with 21 additions and 7 deletions

View File

@ -6760,7 +6760,7 @@ span[class*="fi-rr-"]:before {
}
.profile-banner-area {
background: linear-gradient(90deg, #8ca3ff 26%, #d58dff 93%);
background: linear-gradient(0deg, rgba(58, 72, 120, 0.59) 0%, rgba(255, 255, 255, 1) 100%);
width: 100%;
height: 310px;
position: relative;

View File

@ -11,11 +11,25 @@
padding: 0 8px;
position: relative;
z-index: 1000;
overflow-x: auto; /* scroll horizontal */
overflow-y: hidden; /* sembunyikan scroll vertikal */
white-space: nowrap; /* cegah isi turun ke baris baru */
scrollbar-width: thin; /* (opsional, Firefox) scrollbar kecil */
overflow-x: auto;
/* scroll horizontal */
overflow-y: hidden;
/* sembunyikan scroll vertikal */
white-space: nowrap;
/* cegah isi turun ke baris baru */
scrollbar-width: thin;
/* (opsional, Firefox) scrollbar kecil */
}
/* Media query for screen widths less than 991px */
@media screen and (max-width: 991px) {
#top_menu {
visibility: hidden;
height: 0px !important;
min-height: 0px !important;
}
}