Mods
This commit is contained in:
@@ -177,6 +177,21 @@ class Window:
|
||||
Window.scroll_area = QScrollArea()
|
||||
Window.scroll_area.setWidgetResizable(True)
|
||||
|
||||
style = f"""
|
||||
QScrollBar:vertical {{
|
||||
border: 0px solid transparent;
|
||||
background: {Config.background_color};
|
||||
width: 15px;
|
||||
margin: 0px 0px 0px 0px;
|
||||
}}
|
||||
|
||||
QScrollBar::handle:vertical {{
|
||||
background: {Config.scrollbar_handle_color};
|
||||
min-height: 20px;
|
||||
}}
|
||||
"""
|
||||
|
||||
Window.scroll_area.setStyleSheet(style)
|
||||
container = QWidget()
|
||||
parent = QVBoxLayout(container)
|
||||
Window.view = QVBoxLayout()
|
||||
|
Reference in New Issue
Block a user