cognee/cognee-frontend/src/app/page.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

40 lines
518 B
CSS

.main {
display: flex;
flex-direction: column;
min-height: 100vh;
}
.main.noData {
flex-direction: column;
}
.data {
display: flex;
flex-direction: row;
flex: 1;
}
.datasetsView {
width: 50%;
transition: width 0.3s ease-in-out;
padding-right: 8px;
border-right: 2px solid white;
}
.openDatasetData {
width: 30%;
}
.dataView {
width: 70%;
animation: grow-width 0.3s ease-in-out;
padding: 0 0 0 32px;
}
@keyframes grow-width {
0% {
width: 50%;
}
100% {
width: 70%;
}
}