diff --git a/index.html b/index.html index 7e44637c..91414af3 100644 --- a/index.html +++ b/index.html @@ -16,6 +16,6 @@
- + diff --git a/src/App.vue b/src/App.vue index 84f90652..69527470 100644 --- a/src/App.vue +++ b/src/App.vue @@ -4,11 +4,13 @@
@@ -36,10 +51,28 @@ const queue = useQStore(); .b-bar { display: grid; grid-template-rows: 1fr max-content; - border-radius: 1rem; gap: 1rem; padding: 1rem; - padding-bottom: 2rem; + padding-bottom: 1rem; + position: relative; + + .time { + display: grid; + grid-template-columns: repeat(3, 1fr); + align-items: center; + + .full { + text-align: end; + } + } + + .ex-hotkeys { + position: absolute; + width: 10rem; + right: 1rem; + top: 1rem; + border-radius: $small; + } .info { display: grid; @@ -55,11 +88,11 @@ const queue = useQStore(); display: flex; flex-direction: column; justify-content: flex-end; + gap: $smaller; .np-title { font-size: 1.15rem; font-weight: bold; - margin-bottom: $small; } .np-artist { diff --git a/src/components/LeftSidebar/NP/HotKeys.vue b/src/components/LeftSidebar/NP/HotKeys.vue index cfad16d8..e5a94c29 100644 --- a/src/components/LeftSidebar/NP/HotKeys.vue +++ b/src/components/LeftSidebar/NP/HotKeys.vue @@ -1,6 +1,6 @@