mirror of
https://github.com/meowarex/TidaLuna-Plugins.git
synced 2026-06-18 03:43:10 +10:00
23 lines
789 B
CSS
23 lines
789 B
CSS
/* Square Player Bar override — injected when floating is disabled */
|
|
|
|
/* MARKER: Floating Player Bar CSS */
|
|
|
|
[data-test="footer-player"] {
|
|
/* biome-ignore lint: Override native floating position */
|
|
bottom: 0 !important;
|
|
/* biome-ignore lint: Override native floating position */
|
|
left: 0 !important;
|
|
/* biome-ignore lint: Override native floating position */
|
|
right: 0 !important;
|
|
/* biome-ignore lint: Override native floating position */
|
|
width: 100% !important;
|
|
/* biome-ignore lint: Override native floating position */
|
|
margin: 0 !important;
|
|
/* biome-ignore lint: Force square corners */
|
|
border-radius: 0 !important;
|
|
/* biome-ignore lint: Remove floating border */
|
|
border: none !important;
|
|
/* biome-ignore lint: Remove floating shadow */
|
|
box-shadow: none !important;
|
|
}
|