test #1

Merged
administrator merged 8 commits from test into feature/odoo18 2025-03-11 14:31:55 +05:30
1 changed files with 26 additions and 6 deletions
Showing only changes of commit 4ab920555c - Show all commits

View File

@ -7,8 +7,8 @@
border-radius: 12px; border-radius: 12px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
margin-top: 20px; margin-top: 20px;
max-height: 900px; /* Adjust this value as needed */ max-height: 100%; /* Adjust the height for scrolling */
overflow-y: auto; /* Make the container scrollable */ overflow-y: auto; /* Enable vertical scrolling */
} }
/* General Container */ /* General Container */
@ -123,8 +123,8 @@
.card-content { .card-content {
padding: 20px; padding: 20px;
overflow-y: auto; overflow-y: auto; /* Enable scroll if content overflows */
max-height: 350px; max-height: 350px; /* Limit height to enable scroll */
font-size: 1em; font-size: 1em;
color: #555; color: #555;
} }
@ -165,10 +165,13 @@ body {
font-family: 'Arial', sans-serif; font-family: 'Arial', sans-serif;
color: #333; color: #333;
background-color: #f0f0f5; background-color: #f0f0f5;
display: flex;
margin: 0; margin: 0;
padding: 0; padding: 0;
overflow-y: auto; overflow-x: hidden; /* Prevent horizontal scrolling */
height: 100%; overflow-y: auto; /* Enable vertical scrolling */
height: 100%; /* Ensure the body takes full height */
scroll-behavior: smooth; /* Smooth scroll */
} }
.profile-header { .profile-header {
@ -319,3 +322,20 @@ body {
} }
/* Optional: Scrollbar styling for Webkit browsers */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}