-
Notifications
You must be signed in to change notification settings - Fork 13
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
Jeroen Nijhuis
committed
Dec 29, 2023
1 parent
b8e65d8
commit c8f8d21
Showing
7 changed files
with
80 additions
and
26 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -1,11 +1,15 @@ | ||
<script setup lang="ts"> | ||
import { ScrollArea, ScrollBar } from "@/components/ui/scroll-area"; | ||
import TabOrchestrator from "@/components/TabOrchestrator.vue"; | ||
</script> | ||
<template> | ||
<ScrollArea | ||
class="w-full h-full max-h-screen flex flex-grow border-l border-[#232323] bg-[#0f0f0f]" | ||
> | ||
<router-view /> | ||
<ScrollBar orientation="horizontal" /> | ||
</ScrollArea> | ||
<div class="flex flex-col max-h-screen relative w-full"> | ||
<ScrollArea | ||
class="w-full flex flex-grow border-l border-[#232323] bg-[#0f0f0f]" | ||
> | ||
<router-view /> | ||
<ScrollBar orientation="horizontal" /> | ||
</ScrollArea> | ||
<TabOrchestrator /> | ||
</div> | ||
</template> |
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,36 @@ | ||
<script setup lang="ts"> | ||
import Expand from "@/assets/icons/expand.svg"; | ||
const state = reactive({ | ||
open: false, | ||
}); | ||
</script> | ||
<template> | ||
<div class="border-t border-l bg-background"> | ||
<div class="flex items-center mb-0 text-xs py-1 px-1"> | ||
<div class="flex space-x-3"> | ||
<div | ||
class="py-1 px-2 rounded cursor-pointer max-w-[200px] truncate hover:bg-border" | ||
> | ||
Logs for minikube/default/countdown-b8dz2 | ||
</div> | ||
<div class="py-1 px-2 rounded cursor-pointer hover:bg-border"> | ||
Tab 2 | ||
</div> | ||
<div class="py-1 px-2 rounded cursor-pointer hover:bg-border"> | ||
Tab 3 | ||
</div> | ||
</div> | ||
<div | ||
class="ml-auto p-1 rounded cursor-pointer hover:bg-border" | ||
@click="state.open = !state.open" | ||
> | ||
<Expand | ||
class="text-white h-3" | ||
:class="{ 'rotate-90': !state.open, 'rotate-270': state.open }" | ||
/> | ||
</div> | ||
</div> | ||
<div class="" v-show="state.open">Test</div> | ||
</div> | ||
</template> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,9 @@ module.exports = { | |
}, | ||
}, | ||
extend: { | ||
rotate: { | ||
270: "270deg", | ||
}, | ||
backdropBlur: { | ||
xxs: "1px", | ||
}, | ||
|