Merge branch 'main' of github.com:InvisibleFuture/webrtc

This commit is contained in:
2023-10-05 12:13:48 +08:00
commit ca811247d1
2 changed files with 13 additions and 1 deletions

View File

@ -267,6 +267,17 @@ export default class ClientList {
} }
}), }),
Input({ Input({
style: {
width: '100px',
border: '2px dotted #bbb',
borderRadius: '50%',
outline: 'none',
padding: '5px 0',
textAlign: 'center',
position: 'absolute',
bottom: '-5px',
left: '85px',
},
value: item.name ?? item.id, value: item.name ?? item.id,
type: 'text', type: 'text',
placeholder: '请设置你的名字', placeholder: '请设置你的名字',

View File

@ -63,8 +63,9 @@ export function Dialog(options) {
transform: translate(-50%, -50%); transform: translate(-50%, -50%);
padding: 1em; padding: 1em;
background-color: #fff; background-color: #fff;
border-radius: 0.5em; border-radius: 150px;
box-shadow: 0 0 1em #ccc; box-shadow: 0 0 1em #ccc;
overflow: hidden;
` `
element.appendChild(content) element.appendChild(content)
// 点击空白处关闭 // 点击空白处关闭