cognee/cognee-frontend/src/ui/Partials/Wizard/WizardContent/WizardContent.module.css
Boris 751eca7aaf
fix: cognee ui with new visualization (#733)
<!-- .github/pull_request_template.md -->

## Description
<!-- Provide a clear description of the changes in this PR -->

## DCO Affirmation
I affirm that all code in every commit of this pull request conforms to
the terms of the Topoteretes Developer Certificate of Origin.

---------

Co-authored-by: Igor Ilic <30923996+dexters1@users.noreply.github.com>
2025-04-18 15:23:51 +02:00

24 lines
444 B
CSS

.wizardContent {
width: 100%;
max-width: 400px;
height: max-content;
background: linear-gradient(90deg, #6510F4 0.52%, #0DFF00 103.83%);
padding: 24px;
margin: 0 auto;
position: relative;
}
.wizardContent::before {
content: '';
width: calc(100% - 6px);
height: calc(100% - 6px);
max-width: 394px;
position: absolute;
top: 3px;
left: 3px;
background-color: #351A4B;
}
.wizardContent > * {
position: relative;
}