Skip to content

Commit 319c475

Browse files
feat: ⚡ 撰写固定下最大最小宽度
1 parent 521b65b commit 319c475

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

web/compose.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1517,11 +1517,15 @@
15171517
font-family: 'Segoe UI', "-apple-system", Segoe, Tahoma, HelveticaNeue, Roboto, Arial, Verdana, sans-serif;
15181518
color: #000;
15191519
height: 100vh;
1520-
width: 100%
1520+
width: 100%;
1521+
display: flex;
1522+
justify-content: center;
15211523
}
15221524

15231525
.uds_coauthor_wrapper .sidebar {
15241526
width: 100%;
1527+
min-width: 375px;
1528+
max-width: 960px;
15251529
position: absolute;
15261530
overflow: hidden;
15271531
display: flex;

web/sw.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// 引入workbox 框架
22
importScripts('./js/sw/workbox-sw.js');
33

4-
const SW_VERSION = 'v1.4.1';
4+
const SW_VERSION = 'v1.4.2';
55
const CACHE_PREFIX = 'BingAI';
66

77
workbox.setConfig({ debug: false, logLevel: 'warn' });
@@ -65,7 +65,7 @@ workbox.precaching.precacheAndRoute([
6565
},
6666
{
6767
url: '/web/compose.html',
68-
revision: '2023.05.08',
68+
revision: '2023.05.09',
6969
},
7070
// ico
7171
{

0 commit comments

Comments
 (0)