mirror of
https://github.com/aljazceru/goose.git
synced 2026-01-08 17:04:25 +01:00
Prompt Library (#1906)
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user