Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev to main #34

Merged
merged 24 commits into from
May 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
d4e0b9d
chore(player): fix on song end event
mbaraa May 21, 2024
0e8a5b4
chore(player): scroll to current playing song
mbaraa May 21, 2024
de617ad
Merge branch 'dev' of github.com:mbaraa/dankmuzikk into dev
mbaraa May 21, 2024
46363e3
chore(themeswitch): fix desktop resize thingy
mbaraa May 21, 2024
c83182e
fix(player): scroll on webkit
mbaraa May 21, 2024
0516a47
refactor(player): move ui related stuff to PlayerUI
mbaraa May 21, 2024
8b70e67
chore(loader): update loader's color
mbaraa May 21, 2024
a08c042
chore(player): move some stuff around
mbaraa May 21, 2024
7e5cd7d
chore(theme): if someone resizes the fucking window they should pay the
mbaraa May 21, 2024
cd294d3
chore(player): separate playlists for faster loading
mbaraa May 21, 2024
18c32d8
chore(player): types
mbaraa May 21, 2024
f8748ad
chore(player): update usage or something
mbaraa May 21, 2024
e7bb41b
chore(style): add background-color change transition
mbaraa May 21, 2024
c266788
chore(nav): shrink mobile's nav
mbaraa May 21, 2024
bde862e
feat(player): update collapsed mobile player
mbaraa May 21, 2024
7731105
feat(player): expandable player
mbaraa May 22, 2024
9db75d9
chore(player): add fixed width to desktop's player
mbaraa May 22, 2024
cfbf48c
Merge pull request #31 from mbaraa/feat/exapandable-player
mbaraa May 22, 2024
7bb6f2f
fix(player): expanded player's duration
mbaraa May 22, 2024
46055de
Merge pull request #32 from mbaraa/feat/exapandable-player
mbaraa May 22, 2024
bbfaee1
chore(player): increase gap-y in expandable player
mbaraa May 22, 2024
5f50687
Merge pull request #33 from mbaraa/feat/exapandable-player
mbaraa May 22, 2024
519dbf6
chore(workflow): update workflow type
mbaraa May 22, 2024
4597e82
chore(workflow): update workflow type for production
mbaraa May 22, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/rex-deploy-beta.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
name: rex-deploy
name: Deployment

concurrency: development

on:
push:
Expand All @@ -11,8 +13,9 @@ on:
- "**.md"

jobs:
rex-deploy:
deployment:
runs-on: ubuntu-latest
environment: development
steps:
- name: rex-7567-e27
uses: mbaraa/[email protected]
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/rex-deploy.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
name: rex-deploy
name: Deployment

concurrency: production

on:
push:
Expand All @@ -15,6 +17,7 @@ on:
jobs:
rex-deploy:
runs-on: ubuntu-latest
environment: production
steps:
- name: rex-7567-e27
uses: mbaraa/[email protected]
Expand Down
29 changes: 28 additions & 1 deletion static/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,40 @@
@tailwind components;
@tailwind utilities;

html,
body,
div,
ul,
table {
scroll-behavior: smooth;
}

* {
--animation-duration: 0.4s;
-webkit-transition:
background-color var(--animation-duration),
opacity var(--animation-duration);
-moz-transition:
background-color var(--animation-duration),
opacity var(--animation-duration);
-o-transition:
background-color var(--animation-duration),
opacity var(--animation-duration);
-ms-transition:
background-color var(--animation-duration),
opacity var(--animation-duration);
transition:
background-color var(--animation-duration),
opacity var(--animation-duration);
}

.loader {
height: 100%;
width: 100%;
aspect-ratio: 1 / 1;
border-width: 6px;
border-style: solid;
border-color: #dedede;
border-color: var(--secondary-color);
border-top-color: transparent;
border-top-width: 2px;
border-radius: 50%;
Expand Down
Loading