diff --git a/dangerzone/settings_widget.py b/dangerzone/settings_widget.py index 9c0d7f6..bb29f11 100644 --- a/dangerzone/settings_widget.py +++ b/dangerzone/settings_widget.py @@ -14,7 +14,7 @@ class SettingsWidget(QtWidgets.QWidget): self.dangerous_doc_label = QtWidgets.QLabel() self.dangerous_doc_label.setAlignment(QtCore.Qt.AlignCenter) self.dangerous_doc_label.setStyleSheet( - "QLabel { font-size: 16px; font-weight: bold; color: #572606; padding: 10px; }" + "QLabel { font-size: 16px; font-weight: bold; color: #572606; }" ) # Save safe version @@ -63,7 +63,7 @@ class SettingsWidget(QtWidgets.QWidget): self.start_button = QtWidgets.QPushButton("Convert to Safe Document") self.start_button.clicked.connect(self.start_button_clicked) self.start_button.setStyleSheet( - "QPushButton { font-size: 16px; font-weight: bold; padding: 10px; }" + "QPushButton { font-size: 16px; font-weight: bold; }" ) button_layout = QtWidgets.QHBoxLayout() button_layout.addStretch()