RC-0.1
This commit is contained in:
@@ -25,6 +25,14 @@
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
||||
#root {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
height: 100vh;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
|
||||
|
||||
:root {
|
||||
--black-gradient: linear-gradient(
|
||||
@@ -38,6 +46,29 @@
|
||||
* {
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
.category-hover:hover {
|
||||
transform: scale(1.1);
|
||||
/* Apply negative margin if needed */
|
||||
}
|
||||
|
||||
.slide-container {
|
||||
overflow: hidden;
|
||||
max-height: 0;
|
||||
transition: max-height 0.5s ease-out, opacity 0.5s ease;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
/* Expanded state styles */
|
||||
.expanded {
|
||||
max-height: fit-content; /* Adjust as needed */
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.minus-z-index {
|
||||
z-index: -10;
|
||||
}
|
||||
|
||||
.editor-container {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
|
||||
Reference in New Issue
Block a user