Spaces:
Sleeping
Sleeping
File size: 733 Bytes
2028cec |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
/* Flex container for logo and title */
.header {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 10px;
}
/* Make the logo bigger */
.logo-image img {
height: 120px !important; /* Ensure the logo size is applied */
display: block;
object-fit: contain;
}
/* Title styling */
.title .prose p{
font-size: 28px !important; /* Force the title font size */
font-weight: bold;
margin: 0;
text-align: center;
}
/* More specific targeting for description to override Gradio */
.description .prose p {
font-size: 18px !important; /* Specifically target the paragraph inside Gradio's prose class */
text-align: center;
margin-top: 20px;
}
|