-
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ADD: alert box added to the new control
- Loading branch information
Showing
7 changed files
with
51 additions
and
31 deletions.
There are no files selected for viewing
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
18 changes: 18 additions & 0 deletions
18
launcher/src/components/UI/control-page/components/widgets/VolumeWidget.vue
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,18 @@ | ||
<template> | ||
<div class="volume-Parent flex w-full h-full justify-center items-center"> | ||
<div class="volume-Ico w-1/3 h-full flex flex-col justify-center items-center"> | ||
<div class="volume-Ico-container flex justify-center items-center w-full h-4/5"> | ||
<img class="w-3/4" src="/img/icon/control-page-icons/hdd.svg" /> | ||
</div> | ||
<span class="w-full h-1/5 flex justify-center items-center text-gray-200 text-2xs font-semibold uppercase">volume</span> | ||
</div> | ||
<div class="volume-box w-2/3 h-full flex flex-col justify-center items-center p-1"> | ||
<div class="volume_services w-full h-2/3 flex rounded-md border border-gray-500"></div> | ||
<div class="hdd-services w-full h-1/3 flex"></div> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script setup></script> | ||
|
||
<style scoped></style> |
8 changes: 3 additions & 5 deletions
8
launcher/src/components/UI/control-page/sections/AlertSection.vue
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,9 @@ | ||
<template> | ||
<div class="w-full h-full col-start-7 col-end-10 grid-cols-5 grid-rows-12 items-center"> | ||
<AlertHeader /> | ||
<AlertBody /> | ||
<div class="w-full h-full col-start-7 col-end-10 row-start-2 row-span-full flex justify-center items-center pt-2 pb-2"> | ||
<ControlAlert /> | ||
</div> | ||
</template> | ||
|
||
<script setup> | ||
import AlertBody from "../components/alert/AlertBody.vue"; | ||
import AlertHeader from "../components/alert/AlertHeader.vue"; | ||
import ControlAlert from "../components/alert/ControlAlert.vue"; | ||
</script> |
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