style(ui): 调整平台选择界面的间距和内边距
- 增加平台选项容器间距从30到50 - 增加平台选项容器顶部内边距从20到10 - 增加平台选项间距从60到80 - 使界面布局更加美观和合理
This commit is contained in:
@@ -66,12 +66,12 @@ public class PlatformSelectionView {
|
||||
// 平台选项容器
|
||||
VBox platformOptionsContainer = new VBox();
|
||||
platformOptionsContainer.setAlignment(Pos.CENTER);
|
||||
platformOptionsContainer.setSpacing(30);
|
||||
platformOptionsContainer.setPadding(new Insets(20, 40, 40, 40));
|
||||
platformOptionsContainer.setSpacing(50); // 增加间距使界面更美观
|
||||
platformOptionsContainer.setPadding(new Insets(100, 40, 40, 40)); // 增加顶部内边距至100,使按钮与顶部间距约200
|
||||
|
||||
HBox platformOptions = new HBox();
|
||||
platformOptions.setAlignment(Pos.CENTER);
|
||||
platformOptions.setSpacing(60);
|
||||
platformOptions.setSpacing(80); // 增加平台选项之间的间距
|
||||
|
||||
// 美团开店宝cookie选项
|
||||
VBox meituanOption = createPlatformMtOption(
|
||||
|
||||
Reference in New Issue
Block a user