Skip to content

Commit 4cba959

Browse files
committed
style(leveldialog): 修正弹窗宽度及添加响应式样式 #290
1 parent 68175c3 commit 4cba959

4 files changed

Lines changed: 13 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
- feat(export): 支持HTML表格转换为Markdown格式 #289
1+
- style(leveldialog): 修正弹窗宽度及添加响应式样式 #290

entrypoints/SettingComponents/Button/LevelDialog.vue

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ export default {
350350
position: fixed;
351351
bottom: 20px;
352352
right: 90px;
353-
width: calc(100% - 100px);
353+
width: 100%;
354354
max-width: 450px;
355355
background-color: var(--secondary);
356356
padding: 20px;
@@ -461,4 +461,10 @@ export default {
461461
background: var(--primary-low);
462462
}
463463
}
464+
465+
@media(max-width:768px) {
466+
#linuxDoLevelPopupContent {
467+
width: calc(100vw - 100px);
468+
}
469+
}
464470
</style>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "linuxdo-scripts",
33
"description": "manifest.json description",
44
"private": true,
5-
"version": "1.5.15",
5+
"version": "1.5.16",
66
"type": "module",
77
"scripts": {
88
"dev": "wxt",

version-log.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.5.16
2+
3+
- style(leveldialog): 修正弹窗宽度及添加响应式样式 #290
4+
15
## 1.5.15
26

37
- feat(export): 支持HTML表格转换为Markdown格式 #289

0 commit comments

Comments
 (0)