Fix app layout. (login scrolling)

This commit is contained in:
2025-02-17 22:35:04 -05:00
parent 24f5d79a55
commit 696ff99580
3 changed files with 11 additions and 6 deletions

View File

@@ -21,22 +21,26 @@ import SideBar from "@/views/main/SideBar.vue";
<style scoped>
.shell-container {
@apply flex;
@apply flex flex-col lg:flex-row;
@apply font-sans;
@apply bg-hBackground text-hOnBackground;
@apply flex-col lg:flex-row;
@apply h-screen;
@apply bg-red-300;
}
.shell-side {
@apply border border-[#3d3d3d];
@apply lg:min-h-screen;
@apply lg:h-screen;
@apply lg:fixed;
@apply border-b lg:border-b-0 lg:border-r;
@apply flex-shrink-0;
}
.shell-view {
@apply flex-grow;
@apply flex justify-center items-center;
@apply w-full;
@apply lg:ml-64;
@apply bg-red-500;
}
</style>