21 feature app redesign #23

Open
tristonarmstrong wants to merge 18 commits from 21-feature-app-redesign into main
2 changed files with 12 additions and 11 deletions
Showing only changes of commit aeefde761a - Show all commits

View File

@ -1,7 +1,7 @@
import { useEffect } from "kaioken"
import { useStorage } from "./hooks/storageStores"
import { useStationsStore } from "./hooks/stationStores"
import { MusicPlayer, Popular, LocalRadio, RecommendedRadio, Navigation } from "./components"
import { Popular, Navigation } from "./components"
export function App() {
const { getStationsFile } = useStorage()
@ -32,14 +32,15 @@ export function App() {
{/* Right Section __________*/}
<div className="flex-1 min-h-[98vh] max-h-[98vh] flex h-0 p-2">
<div className="flex-1 min-h-[98vh] max-h-[98vh] flex h-0 p-2 min-w-0">
<div className="bg-gray-200 w-full border rounded-xl p-4 flex-col flex gap-4">
<MusicPlayer />
{/*<MusicPlayer />*/}
<Popular />
{/* Bottom Section __________*/}
<div id="bottom" className="flex-1 rounded-xl flex flex-row gap-4">
<LocalRadio />
<RecommendedRadio />
<div id="bottom" className="flex-1 rounded-xl flex flex-row gap-4 bg-white">
{/*<LocalRadio />*/}
{/*<RecommendedRadio />*/}
</div>
</div>
</div>

View File

@ -13,12 +13,12 @@
}
html,
body {
body,
#root {
margin: 0 !important;
}
body {
@apply flex flex-col;
overlay: hidden;
max-width: 100vw;
max-height: 100vh;
}
.paper {