Преглед на файлове

Updates button container

main
Keith Daulton преди 1 година
родител
ревизия
76c3d2f743
променени са 1 файла, в които са добавени 5 реда и са изтрити 2 реда
  1. +5
    -2
      src/webviews/apps/shared/components/button-container.ts

+ 5
- 2
src/webviews/apps/shared/components/button-container.ts Целия файл

@ -1,5 +1,5 @@
import { css, html, LitElement } from 'lit';
import { customElement } from 'lit/decorators.js';
import { customElement, property } from 'lit/decorators.js';
import { elementBase } from './styles/lit/base.css';
@customElement('button-container')
@ -17,7 +17,7 @@ export class ButtonContainer extends LitElement {
}
@media (min-width: 640px) {
:host {
:host(:not([editor])) {
max-width: 100%;
}
}
@ -31,6 +31,9 @@ export class ButtonContainer extends LitElement {
`,
];
@property({ type: Boolean })
editor = false;
override render() {
return html`<div class="group"><slot></slot></div>`;
}

Зареждане…
Отказ
Запис