-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
55 changed files
with
1,898 additions
and
658 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+3.93 KB
(110%)
apps/adminConsole/src/assets/fonts/MaterialSymbolsRounded3.woff2
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<template> | ||
<div class="absolute-full bg-background-1" style="z-index: 999"> | ||
<RouteBackBar | ||
class="my-content-page-header-extra" | ||
size="md" | ||
:title="title" | ||
:avatar="avatar" | ||
> | ||
<template #extra> | ||
<slot name="extra"></slot> | ||
</template> | ||
</RouteBackBar> | ||
<bt-scroll-area class="my-scroll-area-wrapper"> | ||
<slot></slot> | ||
</bt-scroll-area> | ||
</div> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
interface Props { | ||
title: string; | ||
avatar?: string; | ||
} | ||
withDefaults(defineProps<Props>(), {}); | ||
import RouteBackBar from '@packages/ui/src/components/RouteBackBar.vue'; | ||
</script> | ||
|
||
<style lang="scss" scoped> | ||
.my-content-page-header-extra { | ||
position: absolute; | ||
top: 0; | ||
right: 8px; | ||
height: $content-header-height; | ||
z-index: 2; | ||
display: flex; | ||
align-items: center; | ||
left: 0; | ||
} | ||
.my-scroll-area-wrapper { | ||
height: calc(100vh - #{$content-header-height}); | ||
margin-top: $content-header-height; | ||
background: $background-6; | ||
& > ::v-deep(.q-scrollarea__container) { | ||
min-width: 0px; | ||
overflow-x: hidden; | ||
} | ||
& > ::v-deep(.q-scrollarea__container > .q-scrollarea__content) { | ||
min-width: 0px; | ||
width: 100% !important; | ||
} | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.