CoverView/src/index.css
Qinyang Liu c892b74fe3
fix:The first theme image is highly out of range
Solve the problem of poor display effect caused by the height of the cover image exceeding the range under the first theme
2024-06-09 11:36:09 +08:00

44 lines
1014 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap?crossorigin=anonymous');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anek+Latin:wght@400;500;600;700&display=swap?crossorigin=anonymous');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@600;700;800&display=swap');
.h-100{
height:36rem;
}
/* Solve the problem of poor display effect caused by the height of the cover image exceeding the range under the first theme */
.h-max.w-full {
height: 420px;
}
.h-99{
height:35rem;
}
::-webkit-scrollbar {
/* width: 8px; */
display: none;
}
Track
::-webkit-scrollbar-track {
background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #ccccff;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #b3b3ff;
}