Skip to content

Commit

Permalink
Merge pull request #75 from mbaraa/refactor/player-ui-responsiveness
Browse files Browse the repository at this point in the history
Refactor: Player's UI Responsiveness
  • Loading branch information
mbaraa authored Jun 12, 2024
2 parents 948144e + 8451e42 commit d9a872e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/views/components/player/collapsed_player.templ
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ templ collapsedPlayer() {
<div
class={
"flex", "flex-col", "justify-center",
"min-w-[100px]", "max-w-[230px]", "md:max-w-[275px]",
"min-w-[100px]", "max-w-[250px]", "md:max-w-[275px]",
}
>
<p class={ "w-full" }>
Expand Down
2 changes: 1 addition & 1 deletion app/views/layouts/default.templ
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ templ Default(title string, children ...templ.Component) {
</head>
<body
hx-ext="loading-states"
class={ "min-w-screen", "min-h-screen", "p-0", "m-0", "font-Ubuntu", "bg-primary" }
class={ "min-w-[360px]", "min-h-screen", "p-0", "m-0", "font-Ubuntu", "bg-primary" }
>
@header.Header()
<div class="refresher">
Expand Down
2 changes: 1 addition & 1 deletion app/views/layouts/raw.templ
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ templ Raw(title string, children ...templ.Component) {
</head>
<body
hx-ext="loading-states"
class={ "min-w-screen", "min-h-screen", "p-0", "m-0", "font-Ubuntu", "bg-primary" }
class={ "min-w-[360px]", "min-h-screen", "p-0", "m-0", "font-Ubuntu", "bg-primary" }
>
<div id="main-contents" style="display: contents">
for _, child := range children {
Expand Down

0 comments on commit d9a872e

Please sign in to comment.