Prompt Library (#1906)

This commit is contained in:
Rizel Scarlett
2025-03-31 07:29:37 -04:00
committed by GitHub
parent 326f087637
commit 54573e4a60
49 changed files with 2295 additions and 206 deletions

View File

@@ -64,10 +64,10 @@
position: absolute;
opacity: 0;
pointer-events: none;
width: 600px;
height: 600px;
top: -150px;
left: -50px;
width: 1000px;
height: 1000px;
top: -200px;
left: -200px;
transform-origin: center;
background: linear-gradient(45deg, #13bbaf, #ff4f00);
animation: rotate 6s linear infinite;
@@ -87,6 +87,25 @@
transition: all 0.3s ease;
}
.prompt-card {
min-height: 200px;
display: flex;
flex-direction: column;
background-color: var(--background-app);
border-radius: 15px;
box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
border: 1px solid var(--border-subtle);
overflow: hidden;
transition: all 0.3s ease;
}
.prompt-card-content {
flex: 1;
display: flex;
flex-direction: column;
padding: 0 1.5rem 1.5rem 1.5rem;
min-height: 0;
}
/* Card header styles */
.card-header {
padding: 1.5rem 1.5rem 0.75rem 1.5rem;