Skip to content

Commit

Permalink
temp update
Browse files Browse the repository at this point in the history
  • Loading branch information
DCRepublic committed Jan 3, 2025
1 parent 86315b7 commit 3eb0189
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 12 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ FROM node:18-bullseye
ENV NODE_ENV=production
WORKDIR /app
RUN chown -R node /app
USER node
RUN mkdir -p /data/images && chown -R node:node /data/images
RUN mkdir -p /data/images && chown -R node:node /data/images
USER node
10 changes: 10 additions & 0 deletions src/app/archives/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,15 @@ export default function CalendarPage() {

return (
<Layout title="Archives">
<Container sx={{ height: 500 }}>
<iframe
src="https://admin.wsrnfm.com/public/wsrn/ondemand/embed?theme=dark"
frameBorder={0}
allowTransparency={true}
style={{ width: '100%', height: '500px', border: 0 }}
></iframe>
</Container>
{/*
<Container sx={{ overflowX: 'hidden' }}>
<Grid container direction="row" justifyContent="space-between" item></Grid>
{windowSize[0] < 600 ? (
Expand Down Expand Up @@ -265,6 +274,7 @@ export default function CalendarPage() {
</Grid>
)}
</Container>
*/}
</Layout>
);
}
12 changes: 3 additions & 9 deletions src/app/components/now_playing_show.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -118,22 +118,16 @@ export default function UpcomingShows() {
Recently Played
</Typography>

<Box
sx={{
height: '17vh',
overflowY: 'scroll',
}}
>
<Box sx={{ height: 140, overflowY: 'scroll' }}>
<iframe
allowTransparency
frameBorder={0}
scrolling="no"
style={{
width: '100%',
overflow: 'auto',
height: '550px',
height: '100vh',
overflowY: 'auto',
padding: 6,
color: 'darkblue.main',
}}
src="https://admin.wsrnfm.com/public/wsrn/history?theme=dark"
></iframe>
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/player-new.js
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ export default function Player() {
{/*<PlayPauseComponent></PlayPauseComponent>*/}
</Grid>
)}
<Grid item xs={12} lg={'auto'} sx={{ pr: 5 }}>
<Grid item xs={12} lg={'auto'} sx={{ pr: 1 }}>
<Box sx={{ color: theme.palette.darkblue.main, p: 2 }}>
{/*<RenderPlayer />*/}
<iframe
Expand Down

0 comments on commit 3eb0189

Please sign in to comment.