diff options
| author | Factiven <[email protected]> | 2023-04-18 22:26:41 +0700 |
|---|---|---|
| committer | Factiven <[email protected]> | 2023-04-18 22:26:41 +0700 |
| commit | 9429681b7cdb61cf4ab065efc7a08abbb27d6787 (patch) | |
| tree | 4d3d19f8afbe221caacf00ba3698236915dd4d2d /styles | |
| parent | Update videoPlayer.js (diff) | |
| download | moopa-9429681b7cdb61cf4ab065efc7a08abbb27d6787.tar.xz moopa-9429681b7cdb61cf4ab065efc7a08abbb27d6787.zip | |
11th fixes
Diffstat (limited to 'styles')
| -rw-r--r-- | styles/globals.css | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/styles/globals.css b/styles/globals.css index 002d267..d0278c0 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -143,3 +143,21 @@ button { margin-left: 2px; margin-bottom: 1px; } + +.skip-button { + @apply bg-white xs:w-28 xs:h-9 w-20 h-7 -right-8 bottom-6 rounded-md font-karla shadow-xl hover:bg-[#f1f1f1] text-black md:static absolute xs:-right-6 xs:bottom-0; +} + +@media screen and (max-width: 768px) { + .skip-button { + font-size: 14px; + padding: 8px 20px; + } +} + +@media screen and (max-width: 480px) { + .skip-button { + font-size: 12px; + padding: 6px 16px; + } +} |