This commit is contained in:
Jakub K
2024-03-17 19:49:59 +01:00
parent a5f58d1bdb
commit 3f8624efd6
25 changed files with 952 additions and 409 deletions

View File

@@ -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;