36 lines
592 B
CSS
36 lines
592 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
* {
|
|
scrollbar-width: thin;
|
|
scrollbar-color: #3f3f46 transparent;
|
|
}
|
|
*::-webkit-scrollbar {
|
|
width: 6px;
|
|
height: 6px;
|
|
}
|
|
*::-webkit-scrollbar-thumb {
|
|
background-color: #3f3f46;
|
|
border-radius: 3px;
|
|
}
|
|
}
|
|
|
|
video::cue {
|
|
text-align: center;
|
|
background: rgba(0, 0, 0, 0.75);
|
|
color: #ffffff;
|
|
font-size: 1.4rem;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
@layer utilities {
|
|
.line-clamp-2 {
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
}
|
|
}
|