Fixed the create account falling off the screen.

git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4775 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
Cory McWilliams 2024-01-15 02:13:21 +00:00
parent 1eab44464c
commit 1335a6e1e5
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
{ {
"type": "tildefriends-app", "type": "tildefriends-app",
"emoji": "🐌", "emoji": "🐌",
"previous": "&n4YCyklfFAtR817GefbdRl5PJGWylSau1YqrD6yq0Ac=.sha256" "previous": "&pc/SH1ng7DyH2BZFDMcYoUMYxRdhrwXGzoMhQho7ju4=.sha256"
} }

View File

@ -185,8 +185,8 @@ class TfElement extends LitElement {
render_id_picker() { render_id_picker() {
return html` return html`
<div style="display: flex; gap: 8px"> <div style="display: flex; gap: 8px">
<tf-id-picker id="picker" selected=${this.whoami} .ids=${this.ids} .users=${this.users} @change=${this._handle_whoami_changed}></tf-id-picker> <tf-id-picker id="picker" style="flex: 1 1 auto" selected=${this.whoami} .ids=${this.ids} .users=${this.users} @change=${this._handle_whoami_changed}></tf-id-picker>
<button class="w3-button w3-dark-grey w3-border" @click=${this.create_identity} id="create_identity">Create Identity</button> <button class="w3-button w3-dark-grey w3-border" style="flex: 0 0 auto" @click=${this.create_identity} id="create_identity">Create Identity</button>
</div> </div>
`; `;
} }