More style.

git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4774 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
2024-01-15 02:01:36 +00:00
parent c3e2da3d51
commit 1eab44464c
7 changed files with 12 additions and 15 deletions

View File

@ -184,9 +184,9 @@ class TfElement extends LitElement {
render_id_picker() {
return html`
<div style="display: flex">
<tf-id-picker style="flex: 1 1" id="picker" selected=${this.whoami} .ids=${this.ids} .users=${this.users} @change=${this._handle_whoami_changed}></tf-id-picker>
<button class="w3-button w3-dark-grey" @click=${this.create_identity} id="create_identity">Create Identity</button>
<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>
<button class="w3-button w3-dark-grey w3-border" @click=${this.create_identity} id="create_identity">Create Identity</button>
</div>
`;
}