Skip to content

Commit

Permalink
fix: remove scrollbar in template
Browse files Browse the repository at this point in the history
  • Loading branch information
BigJk committed Feb 9, 2024
1 parent 027ccac commit 6c0f557
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions frontend/src/js/ui/components/print-preview.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,19 +33,19 @@ const pre = `
line-height: 1;
}
::-webkit-scrollbar {
#content::-webkit-scrollbar {
width: 0;
}
::-webkit-scrollbar-track {
#content::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
#content::-webkit-scrollbar-thumb {
background: #c2c2c2;
}
::-webkit-scrollbar-thumb:hover {
#content::-webkit-scrollbar-thumb:hover {
background: #d1d1d1;
}
</style>
Expand Down

0 comments on commit 6c0f557

Please sign in to comment.