Skip to content

Commit

Permalink
feat: ⚡ 撰写固定下最大最小宽度
Browse files Browse the repository at this point in the history
  • Loading branch information
adams549659584 committed May 8, 2023
1 parent 521b65b commit 319c475
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion web/compose.html
Original file line number Diff line number Diff line change
Expand Up @@ -1517,11 +1517,15 @@
font-family: 'Segoe UI', "-apple-system", Segoe, Tahoma, HelveticaNeue, Roboto, Arial, Verdana, sans-serif;
color: #000;
height: 100vh;
width: 100%
width: 100%;
display: flex;
justify-content: center;
}

.uds_coauthor_wrapper .sidebar {
width: 100%;
min-width: 375px;
max-width: 960px;
position: absolute;
overflow: hidden;
display: flex;
Expand Down
4 changes: 2 additions & 2 deletions web/sw.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// 引入workbox 框架
importScripts('./js/sw/workbox-sw.js');

const SW_VERSION = 'v1.4.1';
const SW_VERSION = 'v1.4.2';
const CACHE_PREFIX = 'BingAI';

workbox.setConfig({ debug: false, logLevel: 'warn' });
Expand Down Expand Up @@ -65,7 +65,7 @@ workbox.precaching.precacheAndRoute([
},
{
url: '/web/compose.html',
revision: '2023.05.08',
revision: '2023.05.09',
},
// ico
{
Expand Down

0 comments on commit 319c475

Please sign in to comment.