This commit is contained in:
Raven Scott 2024-10-28 17:40:52 -04:00
parent b18ac40bd4
commit 91acdabda0

View File

@ -238,3 +238,11 @@ p {
::-webkit-scrollbar-track { ::-webkit-scrollbar-track {
background-color: #121212; /* Color of the scrollbar background/track */ background-color: #121212; /* Color of the scrollbar background/track */
} }
/* Responsive Image Styling */
img {
max-width: 100%; /* Ensures the image cannot be larger than its container */
height: auto; /* Maintains the aspect ratio */
display: block; /* Removes any inline spacing */
object-fit: contain; /* Ensures the image scales within its container */
}