create new scss component

This commit is contained in:
Srinath 2026-02-04 13:34:25 +05:30
parent 4099d95549
commit 467ca1b93b
1 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,46 @@
.pc-wrapper {
padding: 10px;
background-color: #f8f9fc;
min-height: 100vh;
width: 100%;
}
.pc-header {
display: flex;
justify-content: flex-end;
margin-bottom: 24px;
gap: 1rem;
}
.pc-generate-btn {
display: inline-flex;
align-items: center;
gap: 8px;
button {
background-color: #901d77;
color: #ffffff;
border-radius: 8px;
padding: 10px 20px;
font-weight: 500;
transition: all 0.3s ease;
&:hover {
background-color: darken(#901d77, 8%);
transform: translateY(-1px);
}
}
}
/* Responsive */
@media (max-width: 768px) {
.pc-wrapper {
padding: 16px;
}
.pc-header {
justify-content: flex-start;
}
}