fix: scrollbar excess padding on firefox for .content-page

This commit is contained in:
geoffrey45
2023-01-03 22:17:32 +03:00
committed by Mungai Njoroge
parent 3e4a8dd7dc
commit 0f0f0e0762
2 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
@-moz-document url-prefix() {
#acontent {
margin-right: calc(-1rem + 1px);
padding-right: 1.25rem;
padding-right: 1rem;
}
// applies to playlist list page
+4 -1
View File
@@ -1,5 +1,8 @@
<template>
<div class="settingspage content-page" style="height: 100%; overflow: auto">
<div
class="settingspage content-page"
style="height: 100%; overflow: auto; padding-right: 1.25rem"
>
<Content :current="0" />
</div>
</template>