FIX: bg black on body
This commit is contained in:
		| @@ -2,6 +2,10 @@ | |||||||
| @tailwind components; | @tailwind components; | ||||||
| @tailwind utilities; | @tailwind utilities; | ||||||
|  |  | ||||||
|  | body { | ||||||
|  |   @apply bg-black; | ||||||
|  | } | ||||||
|  |  | ||||||
| .button { | .button { | ||||||
|   text-decoration: none; |   text-decoration: none; | ||||||
|   box-shadow: 0 8px 0 0 black; |   box-shadow: 0 8px 0 0 black; | ||||||
|   | |||||||
| @@ -1,5 +1,5 @@ | |||||||
| <template> | <template> | ||||||
|   <div class="bg-black text-white p-12 text-lg flex flex-col items-center"> |   <div class="text-white p-12 text-lg flex flex-col items-center"> | ||||||
|     <a href="/" class="mb-12"> |     <a href="/" class="mb-12"> | ||||||
|       <img class="logo" src="/logo.svg"> |       <img class="logo" src="/logo.svg"> | ||||||
|     </a> |     </a> | ||||||
|   | |||||||
| @@ -1,6 +1,7 @@ | |||||||
| <template @keydown.esc="closePlayer()"> | <template @keydown.esc="closePlayer()"> | ||||||
|   <div class="bg-black text-white w-full flex items-center flex-col"> |   <div class="text-white w-full flex items-center flex-col"> | ||||||
|     <button class="text-sm md:text-5xl leading-none button button--close m-3 flex justify-center items-center z-50" @click="closePlayer()"> |     <button class="text-sm md:text-5xl leading-none button button--close m-3 flex justify-center items-center z-50" | ||||||
|  |       @click="closePlayer()"> | ||||||
|     </button> |     </button> | ||||||
|  |  | ||||||
|     <video class="mixPlayer w-full" controls ref="mixPlayer"> |     <video class="mixPlayer w-full" controls ref="mixPlayer"> | ||||||
| @@ -42,7 +43,8 @@ | |||||||
|  |  | ||||||
|       <p class="block mt-10"> |       <p class="block mt-10"> | ||||||
|         see artist page:<br> |         see artist page:<br> | ||||||
|         <a target="_blank" class="underline text-orange-500 hover:text-orange-400" :href="store.getArtistById(currentTrack.artist).url"> |         <a target="_blank" class="underline text-orange-500 hover:text-orange-400" | ||||||
|  |           :href="store.getArtistById(currentTrack.artist).url"> | ||||||
|           {{ store.getArtistById(currentTrack.artist).name }} |           {{ store.getArtistById(currentTrack.artist).name }} | ||||||
|         </a><br> |         </a><br> | ||||||
|         purchase the track:<br> |         purchase the track:<br> | ||||||
| @@ -133,10 +135,12 @@ nav > button:first-child { | |||||||
| .button--close { | .button--close { | ||||||
|   position: fixed; |   position: fixed; | ||||||
|   right: 2vw; |   right: 2vw; | ||||||
|  |  | ||||||
|   &:after { |   &:after { | ||||||
|     content: "\00d7"; |     content: "\00d7"; | ||||||
|   } |   } | ||||||
| } | } | ||||||
|  |  | ||||||
| .button { | .button { | ||||||
|   text-decoration: none; |   text-decoration: none; | ||||||
|   box-shadow: 0 8px 0 0 black; |   box-shadow: 0 8px 0 0 black; | ||||||
|   | |||||||
| @@ -1,5 +1,5 @@ | |||||||
| <template> | <template> | ||||||
|   <div class="bg-black"> |   <div> | ||||||
|     <div class="w-full flex justify-center"> |     <div class="w-full flex justify-center"> | ||||||
|       <nav class="[&>*]:p-2 text-white bottom-0 right-0 fixed flex justify-center z-50"> |       <nav class="[&>*]:p-2 text-white bottom-0 right-0 fixed flex justify-center z-50"> | ||||||
|         <a href="https://www.youtube.com/channel/UCATtFHnOLDCv8qroi2KW3ZA" target="about:blank" class="mt-1"> |         <a href="https://www.youtube.com/channel/UCATtFHnOLDCv8qroi2KW3ZA" target="about:blank" class="mt-1"> | ||||||
|   | |||||||
| @@ -1,5 +1,5 @@ | |||||||
| <template> | <template> | ||||||
|     <div class="bg-black h-screen w-full flex justify-center p-16"> |     <div class="h-screen w-full flex justify-center p-16"> | ||||||
|         <img src="/logo.svg"> |         <img src="/logo.svg"> | ||||||
|     </div> |     </div> | ||||||
| </template> | </template> | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user