Some minor tweaks

This commit is contained in:
Martin Kleinschrodt 2021-08-06 09:39:09 +02:00
parent 65599c2081
commit 9947f5e237
3 changed files with 11 additions and 2 deletions

View File

@ -1,5 +1,8 @@
{
"lit-plugin.globalAttributes": [
"disabled"
]
],
"files.associations": {
"*.svg": "html"
}
}

View File

@ -74,7 +74,7 @@ export class Input extends BaseInput {
spellcheck="false"
autocomplete="off"
type="${type as any}"
pattern="${pattern || ".*"}"
.pattern="${pattern || ".*"}"
.min=${this.min}
.max=${this.max}
@focus=${this._focused}

View File

@ -317,6 +317,12 @@ export class ItemsList extends StateMixin(LitElement) {
font-weight: bold;
box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
}
@media (max-width: 700px) {
.list-item {
margin: 0;
}
}
`,
];