prototype edit

This commit is contained in:
cherry2250 2025-10-21 16:01:48 +09:00
parent 16c8a6a5b3
commit d4728c0078
3 changed files with 19 additions and 8 deletions

View File

@ -39,14 +39,6 @@
<span class="material-icons text-kt-red" style="font-size: 32px;">add_circle</span> <span class="material-icons text-kt-red" style="font-size: 32px;">add_circle</span>
<p class="text-body-small mt-sm">새 이벤트</p> <p class="text-body-small mt-sm">새 이벤트</p>
</button> </button>
<button class="card card-clickable p-md" id="aiRecommend">
<span class="material-icons text-ai-blue" style="font-size: 32px;">auto_awesome</span>
<p class="text-body-small mt-sm">AI 추천</p>
</button>
<button class="card card-clickable p-md" id="viewTemplates">
<span class="material-icons text-secondary" style="font-size: 32px;">dashboard</span>
<p class="text-body-small mt-sm">템플릿</p>
</button>
<button class="card card-clickable p-md" id="viewAnalytics"> <button class="card card-clickable p-md" id="viewAnalytics">
<span class="material-icons text-secondary" style="font-size: 32px;">analytics</span> <span class="material-icons text-secondary" style="font-size: 32px;">analytics</span>
<p class="text-body-small mt-sm">분석</p> <p class="text-body-small mt-sm">분석</p>

View File

@ -64,6 +64,10 @@
justify-content: center; justify-content: center;
cursor: pointer; cursor: pointer;
} }
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style> </style>
</head> </head>
<body> <body>

View File

@ -24,6 +24,21 @@
.channel-card.selected .channel-options { .channel-card.selected .channel-options {
display: block; display: block;
} }
.channel-options .form-check {
display: flex;
align-items: center;
gap: var(--spacing-sm);
margin-bottom: var(--spacing-sm);
}
.channel-options .form-check-input {
width: 20px;
height: 20px;
cursor: pointer;
}
.channel-options .form-check-label {
cursor: pointer;
user-select: none;
}
</style> </style>
</head> </head>
<body> <body>